[PATCH vkd3d v3 08/11] tests: Test matrix initialization.

Giovanni Mascellani gmascellani at codeweavers.com
Fri Apr 22 05:25:04 CDT 2022


From: Francisco Casas <fcasas at codeweavers.com>

Signed-off-by: Francisco Casas <fcasas at codeweavers.com>
Signed-off-by: Giovanni Mascellani <gmascellani at codeweavers.com>
---
v3:
* New
---
 Makefile.am                               |  1 +
 tests/hlsl-initializer-matrix.shader_test | 72 +++++++++++++++++++++++
 2 files changed, 73 insertions(+)
 create mode 100644 tests/hlsl-initializer-matrix.shader_test

diff --git a/Makefile.am b/Makefile.am
index e760a66b..ae53e767 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -79,6 +79,7 @@ vkd3d_shader_tests = \
 	tests/hlsl-initializer-local-array.shader_test \
 	tests/hlsl-initializer-nested.shader_test \
 	tests/hlsl-initializer-numeric.shader_test \
+	tests/hlsl-initializer-matrix.shader_test \
 	tests/hlsl-initializer-static-array.shader_test \
 	tests/hlsl-initializer-struct.shader_test \
 	tests/hlsl-intrinsic-override.shader_test \
diff --git a/tests/hlsl-initializer-matrix.shader_test b/tests/hlsl-initializer-matrix.shader_test
new file mode 100644
index 00000000..c4fafea7
--- /dev/null
+++ b/tests/hlsl-initializer-matrix.shader_test
@@ -0,0 +1,72 @@
+[pixel shader]
+float4 main() : SV_TARGET
+{
+    float4x3 mat = {11, 12, 13, 21, 22, 23, 31, 32, 33, 41, 42, 43};
+    return float4(mat[1], 0);
+}
+
+[test]
+todo draw quad
+probe all rgba (21, 22, 23, 0)
+
+
+[pixel shader]
+float4 main() : SV_TARGET
+{
+    row_major float4x3 mat = {11, 12, 13, 21, 22, 23, 31, 32, 33, 41, 42, 43};
+    return float4(mat[1], 0);
+}
+
+[test]
+todo draw quad
+probe all rgba (21, 22, 23, 0)
+
+
+[pixel shader]
+float4 main() : SV_TARGET
+{
+    float3x4 mat = {11, 12, 13, 14, 21, 22, 23, 24, 31, 32, 33, 34};
+    return float4(mat[1]);
+}
+
+[test]
+todo draw quad
+probe all rgba (21, 22, 23, 24)
+
+
+[pixel shader]
+float4 main() : SV_TARGET
+{
+    row_major float3x2 mat = {11, 12, 21, 22, 31, 32};
+    return float4(mat[1], mat[2]);
+}
+
+[test]
+todo draw quad
+probe all rgba (21, 22, 31, 32)
+
+
+[pixel shader]
+float4 main() : SV_TARGET
+{
+    row_major float3x2 mat;
+    mat = float3x2(11, 12, 21, 22, 31, 32);
+    return float4(mat[1], mat[2]);
+}
+
+[test]
+todo draw quad
+probe all rgba (21, 22, 31, 32)
+
+
+[pixel shader]
+float4 main() : SV_TARGET
+{
+    float4 x = float4(12, 21, 22, 31);
+    float3x2 mat = float3x2(11, x, 32);
+    return float4(mat[1], mat[2]);
+}
+
+[test]
+todo draw quad
+probe all rgba (21, 22, 31, 32)
-- 
2.35.2




More information about the wine-devel mailing list