summaryrefslogtreecommitdiff
path: root/tests/shaders/glsl-fs-uniform-bool-2.shader_test
blob: d1a3f5fb93f81ece80b7aad325039393cd9aecba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[require]
GLSL >= 1.10

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

[fragment shader]
uniform bool testBool;
void main()
{
	gl_FragColor = testBool ? vec4(0.0, 1.0, 0.0, 1.0) : vec4(1.0, 0.0, 0.0, 1.0);
}

[test]
uniform int testBool 1
draw rect -1 -1 2 2
probe rgb 1 1 0.0 1.0 0.0