Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/Media/materials/programs/AmbientOneTexture.glsl @ 5026

Last change on this file since 5026 was 5026, checked in by rgrieder, 16 years ago
  • fixed an ogre parse exception in Examples.program —> added programs folder and 5 files in it.
  • if we don't need Examples.program then, well…
File size: 179 bytes
Line 
1uniform vec4 ambient;
2
3/*
4  Basic ambient lighting vertex program
5*/
6void main()
7{
8        gl_Position = ftransform();
9        gl_TexCoord[0] = gl_MultiTexCoord0;
10        gl_FrontColor = ambient;
11}
12
13
Note: See TracBrowser for help on using the repository browser.