Tag Archives: shaders
Today I started working on the screenspace effects… Screenspace effects are effects that use only the “rendered image”, or more precisely, the 2d representation of the scene (not the whole 3d nature). A lot of effects fall under this category (and a whole lot more are being worked on all the time)… For my purposes, […]
Today I integrated GLSL Optimizer to my shader code… It had some quirks: Doesn’t accept #line directives with name of the files, so I have to strip that when feeding it Doesn’t accept OpenGL 3.30 shaders This last one isn’t that bad, although I was using 3.30 shaders (the tutorials I was using were […]
Today I worked on building a preprocessor for GLSL… Well, I didn’t exactly built a preprocessor, GLSL has one (contrary to what I understood previously), but it doesn’t work like the Direct3D one. On the D3D one, when I ask him to compile a shader, I give him a series of preprocessor macros and he […]
A big slice of our development “budget” has gone into SurgeED, something I’ve been working on and off for the last two years… SurgeED is a world editor with some “workspace” capabilities. The idea is that we don’t just author maps in it, we aggregate all our development tools and utilities into this unified system, […]