mirror of
https://github.com/guilhermewerner/opengl
synced 2025-06-15 21:04:18 +00:00
9 lines
104 B
GLSL
9 lines
104 B
GLSL
#version 330 core
|
|
|
|
layout(location = 0) in vec4 position;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = position;
|
|
};
|