tests: Test step() intrinsic.

This commit is contained in:
Francisco Casas 2023-01-13 17:37:12 -03:00 committed by Alexandre Julliard
parent 6fbf2b3e75
commit 4e1a4a76d9
Notes: Alexandre Julliard 2023-01-19 22:45:36 +01:00
Approved-by: Giovanni Mascellani (@giomasce)
Approved-by: Zebediah Figura (@zfigura)
Approved-by: Henri Verbeet (@hverbeet)
Approved-by: Alexandre Julliard (@julliard)
Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/62
2 changed files with 56 additions and 0 deletions

View File

@ -132,6 +132,7 @@ vkd3d_shader_tests = \
tests/saturate.shader_test \
tests/shader-interstage-interface.shader_test \
tests/sqrt.shader_test \
tests/step.shader_test \
tests/swizzle-0.shader_test \
tests/swizzle-1.shader_test \
tests/swizzle-2.shader_test \

55
tests/step.shader_test Normal file
View File

@ -0,0 +1,55 @@
[pixel shader todo]
uniform float4 f, p;
float4 main() : sv_target
{
return step(f, p);
}
[test]
uniform 0 float4 5.0 -2.6 3.0 2.0
uniform 4 float4 1.0 -4.3 3.0 4.0
todo draw quad
todo probe all rgba (0.0, 0.0, 1.0, 1.0)
[pixel shader todo]
float4 main() : sv_target
{
float2x2 a = {1, 2, 3, 4};
float b = {3};
return float4(step(a, b));
}
[test]
todo draw quad
todo probe all rgba (1.0, 1.0, 1.0, 0.0)
[pixel shader fail]
float4 main() : sv_target
{
float2x2 a = {1, 2, 3, 4};
float1 b = {3};
step(a, b);
return 0;
}
[pixel shader todo]
float4 main() : sv_target
{
float3x2 a = {8, 0,
0, 8,
8, 8};
float2x3 b = {0, 8, 0,
8, 0, 0};
return float4(step(a, b));
}
[test]
todo draw quad
todo probe all rgba (0.0, 1.0, 1.0, 0.0)