summaryrefslogtreecommitdiff
path: root/assets/shaders/triangle.vert
blob: 45b4907906feafb56aa1a19643de0bdfed42fe94 (plain)
1
2
3
4
5
6
7
8
9
10
11
#version 410

layout(location = 0) in vec2 inPos;
layout(location = 1) in vec3 inColor;

layout(location = 0) out vec3 fragColor;

void main() {
  gl_Position = vec4(inPos, 0.0, 1.0);
  fragColor = inColor;
}