aboutsummaryrefslogtreecommitdiff
path: root/tests/spec/glsl-es-1.00/compiler/structure-and-array-operations/array-length-with-argument.vert
blob: 2096ae5ce7e46352865257b39bd519c903e4610b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* [config]
 * expect_result: fail
 * glsl_version: 1.20
 * glsles_version: 1.00
 * [end config]
 */


uniform vec4 a[2];

void main()
{
  gl_Position = vec4(a.length(5));
}