summaryrefslogtreecommitdiff
path: root/engine/vertex.glsl
blob: b0a2a1384d4378899286a683c824a089553b9783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#version 330 core
layout (location = 0) in vec3 pos;
layout (location = 1) in vec3 color;

out vec3 in_frag_color;

uniform mat4 model;
uniform mat4 view;
uniform mat4 projection;

void main()
{
    gl_Position = projection * view * model * vec4(pos, 1.0);

	in_frag_color = color;
}