mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
14 lines
266 B
Plaintext
14 lines
266 B
Plaintext
uniform samplerRECT samp0 : register(s0);
|
|
|
|
void main(out float4 ocol0 : COLOR0, in float2 uv0 : TEXCOORD0)
|
|
{
|
|
float4 c0 = texRECT(samp0, uv0).rgba;
|
|
float green = c0.g;
|
|
|
|
if (c0.g < 0.50)
|
|
{
|
|
green = c0.r + c0.b;
|
|
}
|
|
|
|
ocol0 = float4(0.0, green, 0.0, 1.0);
|
|
} |