vkd3d/tests/hlsl-array-dimension.shader_test
Zebediah Figura 98a36dfa41 tests: Mark individual test directives as todo.
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: Alexandre Julliard <julliard@winehq.org>
2022-04-15 21:18:06 +02:00

18 lines
367 B
Plaintext

% Test what kinds of expressions are valid array dimensions.
[pixel shader]
float4 main() : sv_target
{
const int dim = 4;
float a[2 * 2] = {0.1, 0.2, 0.3, 0.4};
float b[4.1] = a;
float c[dim] = b;
float d[true] = {c[0]};
float e[65536];
return float4(d[0], c[0], c[1], c[3]);
}
[test]
todo draw quad
probe all rgba (0.1, 0.1, 0.2, 0.4)