diff options
author | Ian Romanick <ian.d.romanick@intel.com> | 2010-03-31 16:16:54 -0700 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2010-03-31 16:16:54 -0700 |
commit | 615adcda8a27783bac52f25fac9850a75d792c84 (patch) | |
tree | a88f84c18f8e07f6af0e0b706acf329311c40bb9 /tests/array-12.glsl | |
parent | 299ed08a68d4f603bb72b7635bfa5c6f95776b22 (diff) |
More array declaration tests
Diffstat (limited to 'tests/array-12.glsl')
-rw-r--r-- | tests/array-12.glsl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/array-12.glsl b/tests/array-12.glsl new file mode 100644 index 0000000000..7fc9579452 --- /dev/null +++ b/tests/array-12.glsl @@ -0,0 +1,11 @@ +#version 120 +/* FAIL - array must have an implicit or explicit size */ + +void main() +{ + vec4 a[]; + + a = vec4 [2] (vec4(1.0), vec4(2.0)); + + gl_Position = gl_Vertex; +} |