tests: Test nested initializers.

Signed-off-by: Francisco Casas <fcasas@codeweavers.com>
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com>
Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francisco Casas 2022-02-03 23:44:21 +01:00 committed by Alexandre Julliard
parent 82720796d0
commit 6061a4e6e3
2 changed files with 58 additions and 0 deletions

View File

@ -70,6 +70,7 @@ vkd3d_shader_tests = \
tests/hlsl-gather.shader_test \
tests/hlsl-initializer-invalid-arg-count.shader_test \
tests/hlsl-initializer-local-array.shader_test \
tests/hlsl-initializer-nested.shader_test \
tests/hlsl-initializer-numeric.shader_test \
tests/hlsl-initializer-static-array.shader_test \
tests/hlsl-initializer-struct.shader_test \
@ -302,6 +303,7 @@ XFAIL_TESTS = \
tests/hlsl-array-dimension.shader_test \
tests/hlsl-initializer-invalid-arg-count.shader_test \
tests/hlsl-initializer-local-array.shader_test \
tests/hlsl-initializer-nested.shader_test \
tests/hlsl-initializer-numeric.shader_test \
tests/hlsl-initializer-static-array.shader_test \
tests/hlsl-initializer-struct.shader_test \

View File

@ -0,0 +1,56 @@
[pixel shader]
float4 main() : sv_target
{
float4 aaa = {1, {{{2, {3}}, 4}}};
return aaa;
}
[test]
draw quad
probe all rgba (1, 2, 3, 4)
[pixel shader]
float4 main() : sv_target
{
float4 aaa[3] =
{
11, {{{12, {13}}, 14},
21, 22}, 23, {{24,
31, {32, 33}, 34}},
};
return aaa[1];
}
[test]
draw quad
probe all rgba (21, 22, 23, 24)
[pixel shader]
struct stu1
{
float4 aaa;
float4 bbb;
};
struct stu2
{
int3 ccc;
stu1 ddd;
};
float4 main() : sv_target
{
struct stu2 val =
{
11, {12, 13,
21, {{{22}}}, 23}, {{24,
31, 32}}, 33, 34,
};
return val.ddd.aaa;
}
[test]
draw quad
probe all rgba (21, 22, 23, 24)