Tagged Questions
0
votes
0answers
17 views
converting ivec2 to vec2 in the vertex shader
In the vertex shader:
in highp ivec2 a;
...
void main(void)
{
...
highp vec2 coord = vec2(1.0, 1.0);
...
coord = vec2(a.xy);
...
Is coord = vec2(a.xy); a valid statement. Please ...
0
votes
0answers
71 views
GLSLES Losing 5-6ms using uniform float instead of e.g. 0.5
I have this fragment shader. On some "sprites" i want a different "saturation" of the texture. At the moment i only set it once but later i would set it each draw depending on the sprite beeing drawn. ...