ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / arb_vertex_program / instructions / dst.shader_test
blobc18ae5b6a15a2d400a8614888733c713c2e7849c
1 [require]
2 GL >= 1.3
3 ARB_vertex_program
5 [vertex program]
6 !!ARBvp1.0
7 # let d = 0.4
8 PARAM v1 = {9.9, 0.16, 0.16, 9.9};
9 PARAM v2 = {9.9, 2.5, 9.9, 2.5};
10 MOV result.position, vertex.position;
11 DST result.color, v1, v2;
12 END
14 [test]
15 ortho -4 4 -4 4
16 draw rect -0.25 -0.25 0.5 0.5
17 # 1, v1.y * v2.y, v1.z, v2.w
18 relative probe rgba (0.5, 0.5) (1.0, 0.4, 0.16, 1.0)