Francisco Casas : tests: Test array initializers.

Alexandre Julliard julliard at winehq.org
Wed Feb 2 16:35:20 CST 2022


Module: vkd3d
Branch: master
Commit: dbcf06348983a2ab1e0daa65b7c06b423c2fc307
URL:    https://source.winehq.org/git/vkd3d.git/?a=commit;h=dbcf06348983a2ab1e0daa65b7c06b423c2fc307

Author: Francisco Casas <fcasas at codeweavers.com>
Date:   Wed Feb  2 13:46:17 2022 +0100

tests: Test array initializers.

Signed-off-by: Francisco Casas <fcasas at codeweavers.com>
Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
Signed-off-by: Giovanni Mascellani <gmascellani at codeweavers.com>
Signed-off-by: Matteo Bruni <mbruni at codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 Makefile.am                                     |  4 +++
 tests/hlsl-initializer-local-array.shader_test  | 35 +++++++++++++++++++++++
 tests/hlsl-initializer-static-array.shader_test | 37 +++++++++++++++++++++++++
 3 files changed, 76 insertions(+)

diff --git a/Makefile.am b/Makefile.am
index 5bcee67..84c7b85 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -68,6 +68,8 @@ vkd3d_shader_tests = \
 	tests/hlsl-function-overload.shader_test \
 	tests/hlsl-gather-offset.shader_test \
 	tests/hlsl-gather.shader_test \
+	tests/hlsl-initializer-local-array.shader_test \
+	tests/hlsl-initializer-static-array.shader_test \
 	tests/hlsl-intrinsic-override.shader_test \
 	tests/hlsl-invalid.shader_test \
 	tests/hlsl-majority-pragma.shader_test \
@@ -295,6 +297,8 @@ XFAIL_TESTS = \
 	tests/cast-to-int.shader_test \
 	tests/cast-to-uint.shader_test \
 	tests/hlsl-array-dimension.shader_test \
+	tests/hlsl-initializer-local-array.shader_test \
+	tests/hlsl-initializer-static-array.shader_test \
 	tests/hlsl-bool-cast.shader_test \
 	tests/hlsl-duplicate-modifiers.shader_test \
 	tests/hlsl-for.shader_test \
diff --git a/tests/hlsl-initializer-local-array.shader_test b/tests/hlsl-initializer-local-array.shader_test
new file mode 100644
index 0000000..0862d4c
--- /dev/null
+++ b/tests/hlsl-initializer-local-array.shader_test
@@ -0,0 +1,35 @@
+[pixel shader]
+float4 main() : SV_TARGET
+{
+    float4 array_loc[3] = {
+        11, 12, 13, 14,
+        21, 22, 23, 24,
+        31, 32, 33, 34
+    };
+    return array_loc[1];
+}
+
+[test]
+draw quad
+probe all rgba (21, 22, 23, 24)
+
+
+[pixel shader]
+float4 main() : SV_TARGET
+{
+    float4 array_loc[2][4] = {
+        11, 12, 13, 14,
+        21, 22, 23, 24,
+        31, 32, 33, 34,
+        41, 42, 43, 44,
+        51, 52, 53, 54,
+        61, 62, 63, 64,
+        71, 72, 73, 74,
+        81, 82, 83, 84,
+    };
+    return array_loc[1][2];
+}
+
+[test]
+draw quad
+probe all rgba (71, 72, 73, 74)
diff --git a/tests/hlsl-initializer-static-array.shader_test b/tests/hlsl-initializer-static-array.shader_test
new file mode 100644
index 0000000..5773350
--- /dev/null
+++ b/tests/hlsl-initializer-static-array.shader_test
@@ -0,0 +1,37 @@
+[pixel shader]
+static const float4 array_st[3] = {
+    11, 12, 13, 14,
+    21, 22, 23, 24,
+    31, 32, 33, 34
+};
+
+float4 main() : SV_TARGET
+{
+    return array_st[1];
+}
+
+[test]
+draw quad
+probe all rgba (21, 22, 23, 24)
+
+
+[pixel shader]
+static const float4 array_st[4][2] = {
+    11, 12, 13, 14,
+    21, 22, 23, 24,
+    31, 32, 33, 34,
+    41, 42, 43, 44,
+    51, 52, 53, 54,
+    61, 62, 63, 64,
+    71, 72, 73, 74,
+    81, 82, 83, 84,
+};
+
+float4 main() : SV_TARGET
+{
+    return array_st[2][1];
+}
+
+[test]
+draw quad
+probe all rgba (61, 62, 63, 64)




More information about the wine-cvs mailing list