2023-09-14 19:29:24 +10:00
|
|
|
[pixel shader fail(sm>=6)]
|
2022-01-19 12:52:01 +01:00
|
|
|
|
|
|
|
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]
|
2021-08-20 01:30:58 +05:30
|
|
|
draw quad
|
2024-02-10 13:16:22 -06:00
|
|
|
probe (0, 0) rgba (0.3, 0.3, 0.4, 0.6)
|
2022-01-19 12:52:01 +01:00
|
|
|
|
2023-09-14 19:29:24 +10:00
|
|
|
[pixel shader fail(sm>=6)]
|
2022-01-19 12:52:01 +01:00
|
|
|
|
|
|
|
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]
|
2021-08-20 01:30:58 +05:30
|
|
|
draw quad
|
2024-02-10 13:16:22 -06:00
|
|
|
probe (0, 0) rgba (0.3, 0.3, 0.3, 0.4)
|
2023-09-14 19:29:24 +10:00
|
|
|
|
|
|
|
|
|
|
|
[require]
|
|
|
|
shader model >= 6.0
|
|
|
|
|
|
|
|
[pixel shader]
|
|
|
|
|
|
|
|
float2 max(float2 a, float2 b)
|
|
|
|
{
|
|
|
|
return a + b;
|
|
|
|
}
|
|
|
|
|
|
|
|
float4 main() : sv_target
|
|
|
|
{
|
|
|
|
return float4(max(0.1, 0.2), 0.0, max(float2(0.1, 0.2), float2(0.3, 0.4)));
|
|
|
|
}
|
|
|
|
|
|
|
|
[test]
|
2021-08-20 01:30:58 +05:30
|
|
|
draw quad
|
2024-02-10 13:16:22 -06:00
|
|
|
probe (0, 0) rgba (0.2, 0.0, 0.3, 0.4)
|