Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/branches/Shader_HS18/programs/Cg/InvertFP.cg @ 12115

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

Changed folder structure, deletet some unused files and cleaned up code

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