aboutsummaryrefslogtreecommitdiff
path: root/shader/vertex.glsl
blob: 88c0b8c6e92a33d7a7a7aa6c30b0ad4020e0af07 (plain)
1
2
3
4
5
6
7
8
#version 330 core

layout (location = 0) in vec2 in_position;

void main()
{
    gl_Position = vec4(in_position, 0.0, 1.0);
}