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

[vertex shader passthrough]

[fragment shader]
void main() {
   const bvec3 x = bvec3(false, false, true);
   const bvec3 y = bvec3(false, true, true);
   const bvec3 result = notEqual(x,y);
   gl_FragColor = vec4(result, 1.0);
}

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