Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/trunk/programs/BloomFP.cg @ 7884

Last change on this file since 7884 was 7884, checked in by landauf, 13 years ago

eol-style native

  • Property svn:eol-style set to native
File size: 179 bytes
Line 
1sampler RT1 : register(s0);
2sampler RT2 : register(s1);
3
4float4 Bloom_ps (float2 iTexCoord : TEXCOORD0) : COLOR
5{
6        return 0.5*tex2D(RT1, iTexCoord) + 0.5*tex2D(RT2, iTexCoord);
7}
Note: See TracBrowser for help on using the repository browser.