source:
data/data_extern/programs/GLSL120/AmbientOneTexture.glsl
Last change on this file was 12115, checked in by wiesep, 6 years ago | |
---|---|
File size: 251 bytes |
Line | |
---|---|
1 | #version 120 |
2 | |
3 | uniform vec4 ambient; |
4 | uniform mat4 worldViewProj; |
5 | |
6 | attribute vec4 position; |
7 | |
8 | varying vec4 colour; |
9 | |
10 | /* |
11 | Basic ambient lighting vertex program for GLSL |
12 | */ |
13 | void main() |
14 | { |
15 | gl_Position = worldViewProj * position; |
16 | gl_FrontColor = ambient; |
17 | } |
Note: See TracBrowser
for help on using the repository browser.