gline/shaders/vertexshader.vert

8 lines
76 B
GLSL
Raw Normal View History

2023-02-24 14:49:56 +00:00
#version 400
in vec3 vp;
void main() {
gl_Position = vec4(vp, 1.0);
}