engineer-thesis-WUT/learnOpenGl/engine/Shaders/vertexShaderSource.vs

6 lines
122 B
Plaintext
Raw Normal View History

2022-12-11 18:49:16 +01:00
#version 330 core
layout (location = 0) in vec3 aPos;
void main()
{
gl_Position = vec4(aPos.x, aPos.y, aPos.z, 1.0);
}