mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-04-13 05:43:18 -07:00
vkd3d-shader/hlsl: Parse the max() intrinsic.
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com> Signed-off-by: Matteo Bruni <mbruni@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
committed by
Alexandre Julliard
parent
f86e4d6b92
commit
99674ab60f
23
tests/max.shader_test
Normal file
23
tests/max.shader_test
Normal file
@@ -0,0 +1,23 @@
|
||||
[pixel shader]
|
||||
float4 main(uniform float u, uniform float v) : sv_target
|
||||
{
|
||||
return float4(max(u, v), max(2, 2.1), max(true, 2), max(-1, -1));
|
||||
}
|
||||
|
||||
[test]
|
||||
uniform 0 float4 0.7 -0.1 0.0 0.0
|
||||
draw quad
|
||||
probe all rgba (0.7, 2.1, 2.0, -1.0)
|
||||
|
||||
[pixel shader]
|
||||
float4 main(uniform float2 u, uniform float2 v) : sv_target
|
||||
{
|
||||
float3 a = float3(-0.1, 0.2, 0.3);
|
||||
|
||||
return float4(max(u, v), max(a, u));
|
||||
}
|
||||
|
||||
[test]
|
||||
uniform 0 float4 0.7 -0.1 0.4 0.8
|
||||
draw quad
|
||||
probe all rgba (0.7, 0.8, 0.7, 0.2)
|
Reference in New Issue
Block a user