Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/branches/Shader_HS18/programs/Example/GLSLES/mrttestfp_quad.glsles @ 12091

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

Updated programs and adjusted Material to work with GLSL>150

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