view data/shaders/hex.vs @ 36:bef14a3387a1

Add missing files.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 05 Aug 2013 20:53:49 +0300
parents 785057719d9b
children
line wrap: on
line source

/* Vertex shader */
void main(void)
{
	vec4 v = vec4(gl_Vertex);
	gl_Position = gl_ModelViewProjectionMatrix * v;
}