mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-01 19:41:14 +01:00
8721dae6e1
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3438 8ced0084-cf51-0410-be5f-012b33b47a6e
26 lines
415 B
Plaintext
26 lines
415 B
Plaintext
uniform samplerRECT samp0 : register(s0);
|
|
|
|
void main(out float4 ocol0 : COLOR0, in float2 uv0 : TEXCOORD0)
|
|
{
|
|
float4 c0 = texRECT(samp0, uv0).rgba;
|
|
float red = 0.0;
|
|
float green = 0.0;
|
|
float blue = 0.0;
|
|
|
|
if (c0.r > 0.25)
|
|
{
|
|
red = c0.r;
|
|
}
|
|
|
|
if (c0.g > 0.25)
|
|
{
|
|
green = c0.g;
|
|
}
|
|
|
|
if (c0.b > 0.25)
|
|
{
|
|
blue = c0.b;
|
|
}
|
|
|
|
ocol0 = float4(red, green, blue, 1.0);
|
|
} |