22 lines
370 B
Plaintext
22 lines
370 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.50 || c0.b > 0.5)
|
||
|
{
|
||
|
blue = c0.r;
|
||
|
red = c0.g;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
blue = c0.r;
|
||
|
green = c0.r;
|
||
|
}
|
||
|
|
||
|
ocol0 = float4(red, green, blue, 1.0);
|
||
|
}
|