diff options
author | Ian Romanick <[email protected]> | 2010-03-29 15:34:21 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-03-29 15:34:21 -0700 |
commit | 32a494586fa8cb01a4ff4c5fa270d29e15c09aa8 (patch) | |
tree | c2ba6461b7187009fb4f3f7deff4d9d01342c2ac /tests/condition-02.glsl | |
parent | 96f9cea11606bb1bd8e07edc17032447424b8bff (diff) |
Add tests for :? operator
Diffstat (limited to 'tests/condition-02.glsl')
-rw-r--r-- | tests/condition-02.glsl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/condition-02.glsl b/tests/condition-02.glsl new file mode 100644 index 00000000000..cbd0e18d9a8 --- /dev/null +++ b/tests/condition-02.glsl @@ -0,0 +1,8 @@ +/* FAIL - :? condition is not bool scalar */ + +uniform float a; + +void main() +{ + gl_Position = (a) ? vec4(1.0, 0.0, 0.0, 1.0) : vec4(0.0, 1.0, 0.0, 1.0); +} |