Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/branches/Shader_HS18/programs/GLSL120/AmbientOneTexture.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: 251 bytes
Line 
1#version 120
2
3uniform vec4 ambient;
4uniform mat4 worldViewProj;
5
6attribute vec4 position;
7
8varying vec4 colour;
9
10/*
11  Basic ambient lighting vertex program for GLSL
12*/
13void main()
14{
15        gl_Position = worldViewProj * position;
16        gl_FrontColor = ambient;
17}
Note: See TracBrowser for help on using the repository browser.