Last change
on this file since 368 was
341,
checked in by Torben Dannhauer, 13 years ago
|
intensityBlending is now supported. Code refactored to have a single setup method
|
File size:
376 bytes
|
Rev | Line | |
---|
[336] | 1 | uniform sampler2DRect sceneTexture; |
---|
| 2 | uniform sampler2DRect intensityMapTexture; |
---|
[338] | 3 | varying vec2 texcoord_scene; |
---|
| 4 | varying vec2 texcoord_intensityMap; |
---|
[334] | 5 | |
---|
| 6 | void main(void) |
---|
| 7 | { |
---|
| 8 | vec4 sceneColor; |
---|
| 9 | vec4 blendColor; |
---|
| 10 | |
---|
[336] | 11 | sceneColor = texture2DRect(sceneTexture, gl_FragCoord); |
---|
| 12 | blendColor = texture2DRect(intensityMapTexture, gl_FragCoord); |
---|
| 13 | gl_FragColor = sceneColor * blendColor; |
---|
[334] | 14 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.