Commit 4ff12977 authored by Laszlo Agocs's avatar Laszlo Agocs
Browse files

Add missing precision qualifiers in qopenglwindow example


Make GLES implementations happy.

Change-Id: Ib389e379f23794eee0fa71ca26b863e56cee662e
Reviewed-by: default avatarGunnar Sletta <gunnar.sletta@jollamobile.com>
parent e79f008a
No related merge requests found
Showing with 6 additions and 6 deletions
uniform highp int currentTime;
uniform int currentTime;
uniform highp vec2 windowSize;
float noise(vec2 co)
highp float noise(highp vec2 co)
{
return 0.5 * fract(sin(dot(co.xy, vec2(12.9898,78.233))) * 43758.5453);
}
float curvSpeed()
highp float curvSpeed()
{
return mod(float(currentTime), 1000000.0) / 500.0;
}
float curv()
highp float curv()
{
return 1.0 - abs((gl_FragCoord.y / (windowSize.y / 10.0) - 5.0) - sin((gl_FragCoord.x / (windowSize.x/20.0)) - curvSpeed()));
}
void main()
{
float coordNoise = noise(gl_FragCoord.xy);
float proximity = smoothstep(0.5, 1.0, (curv() + 1.0) * (coordNoise ));
highp float coordNoise = noise(gl_FragCoord.xy);
highp float proximity = smoothstep(0.5, 1.0, (curv() + 1.0) * (coordNoise ));
gl_FragColor = vec4(coordNoise, coordNoise, coordNoise, 1.0) * proximity;
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment