vkd3d/tests/hlsl-vector-indexing.shader_test
Zebediah Figura 98a36dfa41 tests: Mark individual test directives as todo.
Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com>
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2022-04-15 21:18:06 +02:00

15 lines
231 B
Plaintext

[pixel shader]
float4 main() : SV_TARGET
{
float4 color;
color[0] = 0.020;
color[1] = 0.245;
color[2] = 0.351;
color[3] = 1.0;
return color;
}
[test]
todo draw quad
probe all rgba (0.02, 0.245, 0.351, 1.0)