summaryrefslogtreecommitdiff
path: root/shaders/vertex.glsl
blob: d6a50917bc74f6181fa9d1ff8bb0dc751dfbe6de (plain) (blame)
1
2
3
4
5
6
7
8
9
#version 410 core

layout(location=0) in vec3 pos;
layout(location=1) in vec3 col;
out vec3 color;
void main() {
  gl_Position = vec4( pos, 1.0 );
  color = col;
};