velage/shaders/vertex/simple.glsl
miri 792532a1bd at least there's a window
):

oh and i removed the mesh stuff so now we're using openmesh
2023-09-09 19:13:12 +02:00

12 lines
No EOL
143 B
GLSL

#version 150 core
in vec3 position;
in vec3 color;
out vec3 Color;
void main()
{
Color = color;
gl_Position = vec4(position, 1.0);
}