ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / arb_vertex_program / instructions / rsq_reciprocal_square_root.shader_test
blob983e2454ef20583366aaeb5ae74ce7823bac01c7
1 [require]
2 GL >= 1.3
3 ARB_vertex_program
5 [vertex program]
6 !!ARBvp1.0
7 PARAM values = {1, 4, 9, 100 };
8 MOV result.position, vertex.position;
9 RSQ result.color.x, values.x;
10 RSQ result.color.y, values.y;
11 RSQ result.color.z, values.z;
12 RSQ result.color.w, values.w;
13 END
15 [test]
16 ortho -4 4 -4 4
17 draw rect -0.25 -0.25 0.5 0.5
18 relative probe rgba (0.5, 0.5) (1.0, 0.5, 0.3333, 0.1)