Files
opengl/OpenGL/Shaders/Vertex.glsl
2021-01-14 19:42:57 -03:00

9 lines
104 B
GLSL

#version 330 core
layout(location = 0) in vec4 position;
void main()
{
gl_Position = position;
};