lab1/lab1-1.vert
b23636c9
 #version 150
 
 in  vec3 in_Position;
 
 void main(void)
 {
 	gl_Position = vec4(in_Position, 1.0);
 }