Files
Lucina3DS/externals/glslang/Test/hlsl.wavequery.frag
2025-02-06 22:24:29 +08:00

12 lines
183 B
GLSL

float4 PixelShaderFunction() : COLOR0
{
if (WaveIsFirstLane())
{
return float4(1, 2, 3, 4);
}
else
{
return float4(4, 3, 2, 1);
}
}