comparison data/shaders/eye_post.vs @ 0:785057719d9b

Import.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 05 Aug 2013 12:25:43 +0300
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:785057719d9b
1 /* Vertex shader */
2 void main(void)
3 {
4 vec4 v = vec4(gl_Vertex);
5 gl_Position = gl_ModelViewProjectionMatrix * v;
6 }
7