Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/branches/Shader_HS18/programs/OLD/InvertFP.cg @ 12083

Last change on this file since 12083 was 12083, checked in by wiesep, 5 years ago

Reorganised shader programs

File size: 122 bytes
Line 
1sampler RT : register(s0);
2
3float4 Invert_ps (float2 iTexCoord : TEXCOORD0) : COLOR
4{
5        return 1 - tex2D(RT, iTexCoord);
6}
Note: See TracBrowser for help on using the repository browser.