Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/branches/Shader_HS18/programs/Example/GLSL150/ShowNormals.glsl @ 12083

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

Reorganised shader programs

File size: 192 bytes
Line 
1#version 150
2
3in vec4 position;
4in vec3 normal;
5
6out vec4 oUv0;
7
8uniform mat4 worldViewProj;
9
10void main()
11{
12        gl_Position = worldViewProj * position;
13        oUv0 = vec4(normal, 1.0);
14}
Note: See TracBrowser for help on using the repository browser.