vkd3d/tests/hlsl-intrinsic-override.shader_test
Francisco Casas f08c0a7c03 vkd3d-shader/hlsl: Find compatible function overloads.
But still throw hlsl_fixme() when there is more than one.
Prioritizing among multiple compatible function overloads in the same way
as the native compiler would require systematic testing.
2023-02-20 21:59:53 +01:00

32 lines
467 B
Plaintext

[pixel shader]
float2 max(float2 a, float2 b)
{
return a + b;
}
float4 main() : sv_target
{
return float4(max(0.1, 0.2), max(float2(0.1, 0.2), float2(0.3, 0.4)));
}
[test]
draw quad
todo probe all rgba (0.3, 0.3, 0.4, 0.6)
[pixel shader]
float2 max(float2 a, float3 b)
{
return a + b.xy;
}
float4 main() : sv_target
{
return float4(max(0.1, 0.2), max(float2(0.1, 0.2), float2(0.3, 0.4)));
}
[test]
draw quad
probe all rgba (0.3, 0.3, 0.3, 0.4)