7 lines
122 B
Plaintext
7 lines
122 B
Plaintext
sampler RT : register(s0);
|
|
|
|
float4 Invert_ps (float2 iTexCoord : TEXCOORD0) : COLOR
|
|
{
|
|
return 1 - tex2D(RT, iTexCoord);
|
|
}
|