diff options
author | Ian Romanick <[email protected]> | 2010-03-31 16:16:54 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-03-31 16:16:54 -0700 |
commit | 615adcda8a27783bac52f25fac9850a75d792c84 (patch) | |
tree | a88f84c18f8e07f6af0e0b706acf329311c40bb9 /tests/array-13.glsl | |
parent | 299ed08a68d4f603bb72b7635bfa5c6f95776b22 (diff) |
More array declaration tests
Diffstat (limited to 'tests/array-13.glsl')
-rw-r--r-- | tests/array-13.glsl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/array-13.glsl b/tests/array-13.glsl new file mode 100644 index 00000000000..cc7e29a5f76 --- /dev/null +++ b/tests/array-13.glsl @@ -0,0 +1,11 @@ +#version 120 +/* PASS */ + +void main() +{ + vec4 a[2]; + + a = vec4 [] (vec4(1.0), vec4(2.0)); + + gl_Position = gl_Vertex; +} |