Magnetar/res/shaders/vertex.glsl

8 lines
94 B
GLSL

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