mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
4d17758657
Do not rely on a draw or dispatch command to do this. This allows more efficiently testing syntax, in cases where testing the actual shader functionality is not interesting.
32 lines
482 B
Plaintext
32 lines
482 B
Plaintext
[pixel shader todo]
|
|
|
|
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]
|
|
todo draw quad
|
|
probe all rgba (0.3, 0.3, 0.4, 0.6)
|
|
|
|
[pixel shader todo]
|
|
|
|
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]
|
|
todo draw quad
|
|
probe all rgba (0.3, 0.3, 0.3, 0.4)
|