vkd3d/tests/hlsl/is-front-face.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

37 lines
567 B
Plaintext

[require]
shader model >= 4.0
[input layout]
0 r32g32 float sv_position
[vb 0]
-2.0 -2.0
2.0 -2.0
-2.0 2.0
2.0 2.0
[vertex shader]
void main(inout float4 pos : sv_position)
{
}
[pixel shader]
float4 main(bool face : sv_isfrontface) : sv_target
{
return face ? float4(1.0f, 2.0f, 1.0f, 2.0f) : float4(0.0f, 1.0f, 0.0f, 1.0f);
}
[test]
todo(glsl) draw triangle strip 4
probe (0, 0, 640, 480) rgba (0.0, 1.0, 0.0, 1.0)
[vb 0]
-2.0 -2.0
-2.0 2.0
2.0 -2.0
2.0 2.0
[test]
todo(glsl) draw triangle strip 4
probe (0, 0, 640, 480) rgba (1.0, 2.0, 1.0, 2.0)