Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/Tutorial/Media/materials/programs/InvertFP.cg @ 47

Last change on this file since 47 was 44, checked in by bknecht, 18 years ago

merge from tutorial branche to trunk

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.