summaryrefslogtreecommitdiff
path: root/src/glsl/tests/constructor-08.glsl
blob: 27153f0cda1305cf22abfbdb1b286a66a55ba51e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PASS */

uniform float a;
uniform float b;

void main()
{
  ivec2 c;

  c = ivec2(a, b);

  gl_Position = gl_Vertex;
}