Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/SuperOrxoBros_HS18/data_extern/programs/BloomFP.cg @ 12175

Last change on this file since 12175 was 12175, checked in by siramesh, 5 years ago

Super Orxo Bros (Sidharth Ramesh, Nisa Balta, Jeff Ren)

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.