summaryrefslogtreecommitdiff
path: root/tests/glslparsertest/glsl2/const-array-05.frag
blob: 0a1e23fe4dffe69b7b0adc69724190df8d13a0c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// [config]
// expect_result: pass
// glsl_version: 1.20
//
// [end config]

/* PASS */
#version 120
void main()
{
   const float a[2] = float[2](0.0, 1.0);
   const float length = a.length();

   if (length == 2)
      gl_FragColor = vec4(a[0], a[1], a[0], a[1]);
   else
      gl_FragColor = vec4(1.0, 0.0, 0.0, 1.0);
}