Files
OpenGL_Intro/shaders/simple.vert
Michael Gimle 555f49180c shaders
2020-08-22 08:00:05 +02:00

8 lines
93 B
GLSL

#version 430 core
in vec3 position;
void main()
{
gl_Position = vec4(position, 1.0f);
}