vkd3d/tests/hlsl/round.shader_test
Elizabeth Figura d3ba810c98 tests: Stop probing all pixels when drawing a uniform colour.
This is simply unnecessary and wastes time.

As part of this, simply remove the "all" directive. Only for a couple of tests
is it even potentially interesting to validate all pixels (e.g.
nointerpolation.shader_test), and for those "all" is replaced with an explicit
(0, 0, 640, 480) rect.

In all other cases we just probe (0, 0).
2024-06-13 23:55:31 +02:00

47 lines
678 B
Plaintext

[pixel shader]
uniform float4 u;
float4 main() : sv_target
{
return round(u);
}
[test]
uniform 0 float4 -0.4 -6.6 7.6 3.4
todo(glsl) draw quad
probe (0, 0) rgba (0.0, -7.0, 8.0, 3.0) 4
[pixel shader]
uniform float4 u;
float4 main() : sv_target
{
float a = round(u.r);
int2 b = round(u.gb);
float4 res = float4(b, a, u.a);
return round(res);
}
[test]
uniform 0 float4 -0.4 -6.6 7.6 3.4
todo(glsl) draw quad
probe (0, 0) rgba (-7.0, 8.0, 0.0, 3.0) 4
[pixel shader]
uniform float4 u;
float4 main() : sv_target
{
int4 i = u;
return round(i);
}
[test]
uniform 0 float4 -1 0 2 10
todo(glsl) draw quad
probe (0, 0) rgba (-1.0, 0.0, 2.0, 10.0) 4