mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-05 18:40:22 +00:00
11 lines
145 B
GLSL
11 lines
145 B
GLSL
void main()
|
|
{
|
|
float4 c0 = Sample();
|
|
float green = c0.g;
|
|
|
|
if (c0.g < 0.50)
|
|
green = c0.r + c0.b;
|
|
|
|
SetOutput(float4(0.0, green, 0.0, 1.0));
|
|
}
|