tests: Import vector indexing tests from Wine.

Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura
2020-09-30 21:01:22 -05:00
committed by Alexandre Julliard
parent b64b304061
commit fd9a568b8a
4 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
[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]
draw quad
probe all rgba (0.02, 0.245, 0.351, 1.0)