summaryrefslogtreecommitdiff
path: root/src/glsl/tests/condition-04.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'src/glsl/tests/condition-04.glsl')
-rw-r--r--src/glsl/tests/condition-04.glsl8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/glsl/tests/condition-04.glsl b/src/glsl/tests/condition-04.glsl
new file mode 100644
index 00000000000..f440b7e9955
--- /dev/null
+++ b/src/glsl/tests/condition-04.glsl
@@ -0,0 +1,8 @@
+/* FAIL - type of second two operands must match */
+
+uniform bool a;
+
+void main()
+{
+ gl_Position = (a) ? vec4(1.0, 0.0, 0.0, 1.0) : vec3(0.0, 1.0, 0.0);
+}