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

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

[fragment shader]
void main()
{
    const bvec4 v = not(bvec4(true, false, true, false));
    gl_FragColor = vec4(v);
}

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