source:
data/trunk/programs/BloomFP.cg
@
8986
Last change on this file since 8986 was 7884, checked in by landauf, 14 years ago | |
---|---|
|
|
File size: 179 bytes |
Rev | Line | |
---|---|---|
[7884] | 1 | sampler RT1 : register(s0); |
2 | sampler RT2 : register(s1); | |
3 | ||
4 | float4 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.