Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/branches/Shader_HS18/programs/GLSL/mrttestfp_quad.glsl @ 12115

Last change on this file since 12115 was 12115, checked in by wiesep, 5 years ago

Changed folder structure, deletet some unused files and cleaned up code

File size: 301 bytes
Line 
1uniform sampler2D rt0;
2uniform sampler2D rt1;
3uniform sampler2D rt2;
4uniform sampler2D rt3;
5
6varying vec2 uv;
7
8void main(void)
9{
10   
11    //gl_FragColor = texture2D(rt0, uv);
12    gl_FragColor = texture2D(rt1, uv);
13    //gl_FragColor = texture2D(rt2, uv);
14    //gl_FragColor = texture2D(rt3, uv);
15       
16}
17
Note: See TracBrowser for help on using the repository browser.