hexnando/shaders/vertex.glsl
2023-01-26 01:44:32 +01:00

6 lines
104 B
GLSL

#version 330 core
layout (location = 0) in vec3 pos;
void main()
{
gl_Position = vec4(pos, 1.0f);
}