vkd3d/tests/hlsl-static-initializer.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

17 lines
246 B
Plaintext

[pixel shader todo]
float myfunc()
{
return 0.6;
}
static float a = myfunc() + 0.2;
static float b;
static const float c;
float4 main() : sv_target
{
return float4(a, b, c, 0);
}
[test]
todo draw quad
probe all rgba (0.8, 0.0, 0.0, 0.0)