mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
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>
This commit is contained in:
parent
448f856c09
commit
2ec6d4d3ff
@ -54,6 +54,7 @@ vkd3d_shader_tests = \
|
||||
tests/abs.shader_test \
|
||||
tests/arithmetic-float.shader_test \
|
||||
tests/arithmetic-int.shader_test \
|
||||
tests/arithmetic-int-uniform.shader_test \
|
||||
tests/arithmetic-uint.shader_test \
|
||||
tests/bitwise.shader_test \
|
||||
tests/cast-broadcast.shader_test \
|
||||
|
29
tests/arithmetic-int-uniform.shader_test
Normal file
29
tests/arithmetic-int-uniform.shader_test
Normal file
@ -0,0 +1,29 @@
|
||||
[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)
|
Loading…
Reference in New Issue
Block a user