aboutsummaryrefslogtreecommitdiff
path: root/tests/spec/glsl-es-1.00/compiler/structure-and-array-operations/array-assign.vert
blob: ea43f565e17e36d9ba6f9fc1b043dc2b7d662ada (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* [config]
 * expect_result: pass
 * glsl_version: 1.20
 * glsles_version: 1.00
 * [end config]
 *
 * From page 35 (page 41 of the PDF) of the GLSL 1.20 spec:
 *
 *     "In total, only the following operators are allowed to operate on
 *     arrays and structures as whole entities:
 *
 *     field or method selector .
 *     equality                 == !=
 *     assignment               =
 *     indexing (arrays only)   []"
 */


void main()
{
  vec4 a[2];
  vec4 b[2];
  vec4 c[2];

  a = vec4[2](vec4(0.0), vec4(2.0));
  b = vec4[ ](vec4(0.5), vec4(2.0));
  c = a;

  gl_Position = a[0] + b[0] + c[1];
}