1 /* PASS */ 2 3 uniform float a; 4 uniform float b; 5 6 void main() 7 { 8 ivec2 c; 9 10 c = ivec2(a, b); 11 12 gl_Position = gl_Vertex; 13 } 14