vkd3d/tests/arithmetic-int-uniform.shader_test
Giovanni Mascellani 2ec6d4d3ff tests: Test arithmetic int operations without constant operands.
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-07-05 22:43:30 +02:00

30 lines
476 B
Plaintext

[pixel shader]
uniform float2 a;
float4 main() : SV_TARGET
{
int x = a.x;
int y = a.y;
return float4(x + y, x - y, x * y, x / y);
}
[test]
uniform 0 float4 5.0 16.0 0.0 0.0
todo draw quad
probe all rgba (21.0, -11.0, 80.0, 0.0)
[pixel shader]
uniform float2 a;
float4 main() : SV_TARGET
{
int x = a.x;
int y = a.y;
return float4(x % y, +x, -x, y / x);
}
[test]
uniform 0 float4 5.0 16.0 0.0 0.0
todo draw quad
probe all rgba (5.0, 5.0, -5.0, 3.0)