mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-04-13 05:43:18 -07:00
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:
committed by
Alexandre Julliard
parent
b64b304061
commit
fd9a568b8a
14
tests/hlsl-vector-indexing.shader_test
Normal file
14
tests/hlsl-vector-indexing.shader_test
Normal 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)
|
Reference in New Issue
Block a user