perf/pixel-rate: new pixel throughput microbenchmark
[piglit.git] / tests / spec / arb_vertex_program / instructions / pow_exponentiation.shader_test
blob43083e36e88d5dcc2b0dac09ad511ea20fe35429
1 [require]
2 GL >= 1.3
3 ARB_vertex_program
5 [vertex program]
6 !!ARBvp1.0
7 PARAM values = {0.5, 2, 3, 4};
8 MOV result.position, vertex.position;
9 POW result.color.x, values.x, values.y;
10 POW result.color.y, values.x, values.z;
11 POW result.color.z, values.x, values.w;
12 POW result.color.w, values.w, values.x;
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) (0.25, 0.125, 0.0625, 1.0)