gline/shaders/vertexshader.vert

8 lines
76 B
GLSL

#version 400
in vec3 vp;
void main() {
gl_Position = vec4(vp, 1.0);
}