Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/branches/Shader_HS18/programs/GLSL150/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: 315 bytes
Line 
1#version 150
2
3uniform sampler2D rt0;
4uniform sampler2D rt1;
5uniform sampler2D rt2;
6uniform sampler2D rt3;
7
8in vec2 uv;
9out vec4 fragColour;
10
11void main(void)
12{
13   
14    //fragColour = texture(rt0, uv);
15    fragColour = texture(rt1, uv);
16    //fragColour = texture(rt2, uv);
17    //fragColour = texture(rt3, uv);
18       
19}
20
Note: See TracBrowser for help on using the repository browser.