diff options
author | Alejandro Piñeiro <[email protected]> | 2016-04-20 10:02:45 +0200 |
---|---|---|
committer | Alejandro Piñeiro <[email protected]> | 2016-05-26 09:19:36 +0200 |
commit | 2ed9563e79670ba2430f0827050e9a851fc56e79 (patch) | |
tree | 8a5c675d3671301f84d30bc5c74c4ae118a3f68e /src/compiler/glsl/tests/warnings/015-andassign.vert | |
parent | eee00274fa330edfa536da039ba9116bdceb9990 (diff) |
glsl: add unit tests data vertex/expected outcome for uninitialized warning
v2: fix 025 test. Add three more tests (Ian Romanick)
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/compiler/glsl/tests/warnings/015-andassign.vert')
-rw-r--r-- | src/compiler/glsl/tests/warnings/015-andassign.vert | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/compiler/glsl/tests/warnings/015-andassign.vert b/src/compiler/glsl/tests/warnings/015-andassign.vert new file mode 100644 index 00000000000..a86a8d88d74 --- /dev/null +++ b/src/compiler/glsl/tests/warnings/015-andassign.vert @@ -0,0 +1,12 @@ +#version 130 + +void main() +{ + int defined = 2; + int undefined; + int fooInt; + + fooInt &= undefined; + fooInt &= defined; +} + |