vkd3d/tests/hlsl-array-dimension.shader_test
Zebediah Figura 4d17758657 tests: Always compile HLSL shaders.
Do not rely on a draw or dispatch command to do this.

This allows more efficiently testing syntax, in cases where testing the actual
shader functionality is not interesting.
2022-11-08 20:52:57 +01:00

18 lines
372 B
Plaintext

% Test what kinds of expressions are valid array dimensions.
[pixel shader todo]
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)