summaryrefslogtreecommitdiff
path: root/tests/glslparsertest/glsl2/const-array-04.frag
blob: 72d6d3af4ee30b0affb703b4bffb8c9e37235e5b (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[] = float[](0.0, 1.0);
   const float b[2] = float[](4.0, 17.7);

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