summaryrefslogtreecommitdiff
path: root/tests/shaders/glsl-const-builtin-atan.shader_test
blob: 3a5ed45d0827b642533141578b9a1cd9a3ea3179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[require]
GLSL >= 1.20

[vertex shader]
void main()
{
	gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
}

[fragment shader]
void main() {
   const float x = atan(100.0, 100.0);
   const float y = atan(1.0);
   if (x == y)
      gl_FragColor = vec4(0.0, 1.0, 0.0, 1.0);
   else
      gl_FragColor = vec4(1.0, 0.0, 0.0, 1.0);
}

[test]
draw rect -1 -1 2 2
probe all rgb 0.0 1.0 0.0