view shader.vert @ 103:f88859a8fa4b

Add note about code origins to COPYING.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 06 Oct 2022 05:02:07 +0300
parents d2839cbfaad8
children
line wrap: on
line source

varying vec3 snormal;
varying vec3 svertex;


void main(void)
{
   svertex = vec3(gl_ModelViewMatrix * gl_Vertex);
   snormal = normalize(gl_NormalMatrix * gl_Normal);

   gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
}