source:
experimental/distortionNG/shaderIntensityMapVis.frag
@
365
Last change on this file since 365 was 363, checked in by , 13 years ago | |
---|---|
File size: 238 bytes |
Rev | Line | |
---|---|---|
[363] | 1 | uniform sampler2DRect sceneTexture; |
2 | uniform sampler2DRect intensityMapTexture; | |
3 | varying vec2 texcoord_scene; | |
4 | varying vec2 texcoord_intensityMap; | |
5 | ||
6 | void main(void) | |
7 | { | |
8 | gl_FragColor = texture2DRect(intensityMapTexture, gl_FragCoord); | |
9 | } |
Note: See TracBrowser
for help on using the repository browser.