vkd3d/tests/arithmetic-float.shader_test
Zebediah Figura 98a36dfa41 tests: Mark individual test directives as todo.
Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com>
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2022-04-15 21:18:06 +02:00

26 lines
384 B
Plaintext

[pixel shader]
float4 main() : SV_TARGET
{
float x = 5.0;
float y = 15.0;
return float4(x + y, x - y, x * y, x / y);
}
[test]
draw quad
probe all rgba (20.0, -10.0, 75.0, 0.33333333)
[pixel shader]
float4 main() : SV_TARGET
{
float x = 5.0;
float y = 15.0;
return float4(x % y, +x, -x, y / x);
}
[test]
todo draw quad
probe all rgba (5.0, 5.0, -5.0, 3.0)