tests: Split hlsl-operations into individual test units.

Partly to make the tests easier to navigate, and partly to allow marking some
tests as SM4+.

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:
Zebediah Figura
2022-03-07 19:55:40 -06:00
committed by Alexandre Julliard
parent b64482e7c7
commit e9ff88469e
7 changed files with 372 additions and 369 deletions

View File

@@ -0,0 +1,25 @@
[pixel shader]
float4 main() : SV_TARGET
{
int x = 5;
int y = 15;
return float4(x + y, x - y, x * y, x / y);
}
[test]
draw quad
probe all rgba (20.0, -10.0, 75.0, 0.0)
[pixel shader]
float4 main() : SV_TARGET
{
int x = 5;
int y = 15;
return float4(x % y, +x, -x, y / x);
}
[test]
draw quad
probe all rgba (5.0, 5.0, -5.0, 3.0)