mirror of
https://github.com/guezoloic/LearnOpenGL.git
synced 2026-01-25 15:34:17 +00:00
7 lines
104 B
GLSL
7 lines
104 B
GLSL
#version 330 core
|
|
|
|
layout (location = 0) in vec3 aPos;
|
|
void main()
|
|
{
|
|
gl_Position = vec4(aPos , 1.0);
|
|
} |