mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-27 10:08:13 +02:00
v2: fix 025 test. Add three more tests (Ian Romanick) Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
12 lines
145 B
GLSL
12 lines
145 B
GLSL
#version 130
|
|
|
|
void main()
|
|
{
|
|
float array[4];
|
|
int fooLength;
|
|
|
|
fooLength = array.length();
|
|
array[0] = 2.0;
|
|
fooLength = array.length();
|
|
}
|
|
|