YoggieEngine/MyGraphicsEngine/shaders/vertex.shader

7 lines
123 B
Plaintext
Raw Normal View History

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