tests: Test matrix indexing.

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: Francisco Casas <fcasas@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Giovanni Mascellani 2022-04-14 12:52:41 +02:00 committed by Alexandre Julliard
parent 2b23b7329c
commit 564883a201
2 changed files with 48 additions and 0 deletions

View File

@ -85,6 +85,7 @@ vkd3d_shader_tests = \
tests/hlsl-invalid.shader_test \
tests/hlsl-majority-pragma.shader_test \
tests/hlsl-majority-typedef.shader_test \
tests/hlsl-matrix-indexing.shader_test \
tests/hlsl-mul.shader_test \
tests/hlsl-nested-arrays.shader_test \
tests/hlsl-numeric-constructor-truncation.shader_test \

View File

@ -0,0 +1,47 @@
[pixel shader]
uniform float4x4 m;
float4 main() : SV_TARGET
{
return float4(m[0][0], m[1][0], m[1][2], m[2][3]);
}
[test]
uniform 0 float4 1.0 2.0 3.0 4.0
uniform 4 float4 5.0 6.0 7.0 8.0
uniform 8 float4 9.0 10.0 11.0 12.0
uniform 12 float4 13.0 14.0 15.0 16.0
todo draw quad
probe all rgba (1.0, 2.0, 10.0, 15.0)
[pixel shader]
uniform column_major float4x4 m;
float4 main() : SV_TARGET
{
return float4(m[0][0], m[1][0], m[1][2], m[2][3]);
}
[test]
uniform 0 float4 1.0 2.0 3.0 4.0
uniform 4 float4 5.0 6.0 7.0 8.0
uniform 8 float4 9.0 10.0 11.0 12.0
uniform 12 float4 13.0 14.0 15.0 16.0
todo draw quad
probe all rgba (1.0, 2.0, 10.0, 15.0)
[pixel shader]
uniform row_major float4x4 m;
float4 main() : SV_TARGET
{
return float4(m[0][0], m[1][0], m[1][2], m[2][3]);
}
[test]
uniform 0 float4 1.0 2.0 3.0 4.0
uniform 4 float4 5.0 6.0 7.0 8.0
uniform 8 float4 9.0 10.0 11.0 12.0
uniform 12 float4 13.0 14.0 15.0 16.0
todo draw quad
probe all rgba (1.0, 5.0, 7.0, 12.0)