source:
data/pool/programs/BloomFP.cg
@
11733
Last change on this file since 11733 was 7884, checked in by landauf, 14 years ago | |
---|---|
|
|
File size: 179 bytes |
Line | |
---|---|
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.