mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-10 05:17:24 +00:00
9d3be5713b
This was SVN commit r3113.
9 lines
170 B
GLSL
9 lines
170 B
GLSL
vec3 lighting(vec3 normal);
|
|
|
|
void main()
|
|
{
|
|
gl_FrontColor = vec4(lighting(gl_Normal),1.0) * gl_Color;
|
|
gl_TexCoord[0] = gl_MultiTexCoord0;
|
|
gl_Position = ftransform();
|
|
}
|