2023-01-23 12:02:40 -08:00
|
|
|
[pixel shader]
|
2022-01-19 03:52:01 -08: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]
|
2023-01-23 12:02:40 -08:00
|
|
|
draw quad
|
2023-03-09 15:29:03 -08:00
|
|
|
probe all rgba (0.3, 0.3, 0.4, 0.6)
|
2022-01-19 03:52:01 -08:00
|
|
|
|
2023-01-23 12:02:40 -08:00
|
|
|
[pixel shader]
|
2022-01-19 03:52:01 -08: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]
|
2023-01-23 12:02:40 -08:00
|
|
|
draw quad
|
2022-01-19 03:52:01 -08:00
|
|
|
probe all rgba (0.3, 0.3, 0.3, 0.4)
|