vkd3d/tests/hlsl/cast-to-half.shader_test
Francisco Casas 6a8939e19f tests: Remove [require] directives for tests that use int and bool uniforms.
These tests should actually compile and run in SM1, which is possible
if we pass the int and uint uniforms in the expected IEEE 754 float
format for SM1 shaders.

Also, bools should be passed as 1.0f or 0.0f to SM1.
2024-02-13 22:51:23 +01:00

38 lines
722 B
Plaintext

[pixel shader todo(sm<4)]
uniform int i;
uniform uint u;
uniform bool b;
uniform float f;
float4 main() : sv_target
{
return float4(((half)i) + 1.5, ((half)u) - 2.5, ((half)b) / 2, f);
}
[test]
if(sm<4) uniform 0 float -1
if(sm<4) uniform 4 float 3
if(sm<4) uniform 8 float 1
if(sm<4) uniform 12 float 0.5
if(sm>=4) uniform 0 int -1
if(sm>=4) uniform 1 uint 3
if(sm>=4) uniform 2 int -2
if(sm>=4) uniform 3 float 0.5
todo(sm<4) draw quad
probe all rgba (0.5, 0.5, 0.5, 0.5)
[pixel shader]
float4 main() : sv_target
{
int i = -1;
uint u = 3;
bool b = true;
float f = 0.5;
return float4(((half)i) + 1.5, ((half)u) - 2.5, ((half)b) / 2, f);
}
[test]
draw quad
probe all rgba (0.5, 0.5, 0.5, 0.5)