vkd3d/tests/hlsl/arithmetic-int-uniform.shader_test
Francisco Casas 1c73513425 tests: Use the vulkan runner to run SM1 compilation tests.
At the current moment this is a little odd because for SM1 [test]
directives are skipped, and the [shader] directives are not executed by
the shader_runner_vulkan.c:compile_shader() but by the general
shader_runner.c:compile_shader(). So in principle it is a little weird
that we go through the vulkan runner.

But fret not, because in the future we plan to make the parser agnostic
to the language of the tests, so we will get rid of the general
shader_runner.c:compile_shader() function and instead call a
runner->compile_shader() function, defined for each runner. Granted,
most of these may call a generic implementation that uses native
compiler in Windows, and vkd3d-shader on Linux, but it would be more
conceptually correct.
2024-01-24 22:37:44 +01:00

199 lines
3.3 KiB
Plaintext

[pixel shader todo(sm<4)]
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(sm<4) draw quad
probe all rgba (21.0, -11.0, 80.0, 0.0)
[pixel shader todo(sm<4)]
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(sm<4) draw quad
probe all rgba (5.0, 5.0, -5.0, 3.0)
[pixel shader todo(sm<4)]
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 42.0 5.0 0.0 0.0
todo(sm<4) draw quad
probe all rgba (8.0, -8.0, -8.0, 8.0)
[pixel shader todo(sm<4)]
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 42.0 5.0 0.0 0.0
todo(sm<4) draw quad
probe all rgba (2.0, -2.0, 2.0, -2.0)
[pixel shader todo(sm<4)]
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 45.0 5.0 0.0 0.0
todo(sm<4) draw quad
probe all rgba (9.0, -9.0, -9.0, 9.0)
[pixel shader todo(sm<4)]
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 45.0 5.0 0.0 0.0
todo(sm<4) draw quad
probe all rgba (0.0, 0.0, 0.0, 0.0)
[pixel shader todo(sm<4)]
uniform float4 a;
float4 main() : SV_TARGET
{
return abs(int4(a));
}
[test]
uniform 0 float4 5.0 -7.0 0.0 -10.0
todo(sm<4) draw quad
probe all rgba (5.0, 7.0, 0.0, 10.0)
[pixel shader todo(sm<4)]
uniform float4 a;
uniform float4 b;
float4 main() : sv_target
{
int2 x = a.xz;
int2 y = a.yw;
int2 z = b.xy;
int2 w = b.zw;
return float4(x / y, z % w);
}
[test]
uniform 0 float4 45.0 5.0 50.0 10.0
uniform 4 float4 3.0 8.0 2.0 5.0
todo(sm<4) draw quad
probe all rgba (9.0, 5.0, 1.0, 3.0)
[require]
shader model >= 6.0
int64
[pixel shader]
uniform int64_t2 a;
float4 main() : SV_TARGET
{
int64_t x = a.x;
int64_t y = a.y;
return float4(x + y, x - y, x * (y >> 4), x / y);
}
[test]
uniform 0 int64_t2 5000000000 16000000000
draw quad
probe all rgba (21.0e9, -11.0e9, 5.0e18, 0.0) 1
[pixel shader]
uniform int64_t2 a;
float4 main() : SV_TARGET
{
int64_t x = a.x;
int64_t y = a.y;
return float4(x % y, +x, -x, y / x);
}
[test]
uniform 0 int64_t2 5000000000 16000000000
draw quad
probe all rgba (5.0e9, 5.0e9, -5.0e9, 3.0)
[pixel shader]
uniform int64_t2 a;
float4 main() : SV_TARGET
{
int64_t x = a.x;
int64_t y = a.y;
return float4(x / y, -x / y, x / -y, -x / -y);
}
[test]
uniform 0 int64_t2 42000000000 5000000000
draw quad
probe all rgba (8.0, -8.0, -8.0, 8.0)
[pixel shader]
uniform int64_t2 a;
float4 main() : SV_TARGET
{
int64_t x = a.x;
int64_t y = a.y;
return float4(x % y, -x % y, x % -y, -x % -y);
}
[test]
uniform 0 int64_t2 42000000000 5000000000
draw quad
probe all rgba (2.0e9, -2.0e9, 2.0e9, -2.0e9)
[pixel shader]
uniform int64_t2 a;
float4 main() : SV_TARGET
{
return float4(abs(a), 0, 0);
}
[test]
uniform 0 int64_t2 5000000000 -7000000000
draw quad
probe all rgba (5.0e9, 7.0e9, 0.0, 0.0)