Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/branches/Shader_HS18/programs/Example/GLSLES/Example_TextureArrayVS.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: 209 bytes
Line 
1#version 300 es
2precision mediump int;
3precision mediump float;
4
5in vec4 uv0;
6in vec4 vertex;
7out vec4 oUv;
8
9uniform mat4 worldViewProj;
10
11void main(void)
12{
13        gl_Position = worldViewProj * vertex;
14        oUv = uv0;
15}
Note: See TracBrowser for help on using the repository browser.