vkd3d/tests/hlsl-initializer-implicit-array.shader_test
Francisco Casas 1240a947d2 tests: Test initialization of implicit size arrays.
Signed-off-by: Francisco Casas <fcasas@codeweavers.com>
Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2022-05-02 11:30:04 +02:00

19 lines
297 B
Plaintext

[pixel shader]
float4 main() : SV_TARGET
{
float4 arr[] = {10, 20, 30, 40, 50, 60, 70, 80};
return arr[1];
}
[test]
todo draw quad
todo probe all rgba (50, 60, 70, 80)
[pixel shader fail]
float4 main() : SV_TARGET
{
float4 arr[] = {10, 20, 30, 40, 50, 60, 70};
return arr[0];
}