Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

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

File size: 301 bytes
RevLine 
[12115]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.