3 * @brief Lighting vertex shader.
7out_qualifier vec3 normal;
12void LightVertex(void) {
13 /* Pass the interpolated normal and position along for dynamic lights.*/
14 normal = normalize(vec3(gl_NormalMatrix * Normal));
15 point = vec3(gl_ModelViewMatrix * Vertex);