engineer-thesis-WUT/Engine/engine/Shaders/vertexShaderSource.vert

5 lines
103 B
GLSL

layout (location = 0) in vec3 aPos;
void main()
{
gl_Position = vec4(aPos.x, aPos.y, aPos.z, 1.0);
}