YoggieEngine/MyGraphicsEngine/shaders/vertex.shader

6 lines
108 B
Plaintext
Raw Normal View History

2021-09-29 18:14:27 +00:00
#version 330 core
layout in vec3 aPos;
2021-09-29 18:14:27 +00:00
void main() {
2021-09-29 18:14:27 +00:00
gl_Position = vec4(aPos.x, aPos.y, aPos.z, 1.0);
}