summaryrefslogtreecommitdiff
path: root/tests/condition-05.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/condition-05.glsl')
-rw-r--r--tests/condition-05.glsl13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/condition-05.glsl b/tests/condition-05.glsl
new file mode 100644
index 0000000000..3dff18f519
--- /dev/null
+++ b/tests/condition-05.glsl
@@ -0,0 +1,13 @@
+#version 120
+/* PASS */
+
+uniform bool a;
+uniform int b;
+
+void main()
+{
+ float x;
+
+ x = (a) ? 2.0 : b;
+ gl_Position = vec4(x);
+}