vkd3d/tests/hlsl-array-dimension.shader_test
Zebediah Figura 5f8becada4 tests: Use % as the shader_test comment character.
So as to avoid clashing with the preprocessor.

Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2021-10-05 21:09:16 +02:00

18 lines
362 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]
draw quad
probe all rgba (0.1, 0.1, 0.2, 0.4)