source: experimental/distortionNG/shader.vert @ 338

Last change on this file since 338 was 338, checked in by Torben Dannhauer, 12 years ago
File size: 245 bytes
RevLine 
[338]1varying vec2 texcoord_scene;
2varying vec2 texcoord_intensityMap;
[334]3
4void main()
5{
6        gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
[338]7        texcoord_scene = vec2(gl_MultiTexCoord0.xy);
8        texcoord_intensityMap = vec2(gl_MultiTexCoord1.xy);
[334]9}
Note: See TracBrowser for help on using the repository browser.