2013-12-19 19:32:50 +01:00

7 lines
122 B
Plaintext

sampler RT : register(s0);
float4 Invert_ps (float2 iTexCoord : TEXCOORD0) : COLOR
{
return 1 - tex2D(RT, iTexCoord);
}