1
vote
1answer
21 views

Does OpenGL (and OpenGL ES) support preprocessor “line continuation” characters?

I've got a macro in my OpenGL ES fragment shader that looks like this: #define CHECK(x, DELTA, outColor, c1, c2) \ if (x < (delta + (DELTA))) { \ outColor = mix(c1, c2, smoothstep(delta, ...
0
votes
0answers
37 views

OpenGL ES 2.0 texture not animating

I was wondering if anyone could help me as I cannot seem to get my texture to animate. I am trying to use my bump map to make a wave like effect. here is my vertex shader attribute highp vec3 ...
0
votes
2answers
170 views

Writing to gl_FragColor causes glUseProgram to throw GL_INVALID_OPERATION

I'm trying to write a blur filter in GLSL ES 2.0 and I'm getting an Error with the line assigning gl_FragColor. I've not been able to figure out why #extension GL_OES_EGL_image_external : require ...
1
vote
1answer
174 views

texture atlas tiling

i'm trying simple texture splatting on ios opengl es 2.0 (ipad). I have 4 tiled textures in pvrt compressed atlas (2x2 tiles). 4 single textures on 4 texture units was terribly slow. vertex ...
1
vote
1answer
196 views

GLSL Shader Error on Mac, but not Windows: cannot convert from 'const int' to '4-component vector of float'

I'm new to shaders and I started playing around with some of them yesterday. They compile fine on my Windows PC, but when they're ran on Mac, there is an error for both: ERROR: 0:14: '=' : ...
-2
votes
1answer
337 views

Passing variables between GLSLES vertex & fragment shaders

Whenever I look at sample shaders, it seems this type of stuff happens almost by magic; sometimes information is saved into special places like position/color, but other times a fragment shader uses ...