summary refs log tree commit diff
path: root/res/shaders/triangle.vs
blob: a6b5b4bcd20223c61e4b58331b59bd47e58f7775 (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 a_pos;
layout (location = 1) in vec3 a_color;
layout (location = 2) in vec2 a_tex_coord;
  
out vec3 our_color;
out vec2 TexCoord;

uniform mat4 transform;

void main()
{
    gl_Position = transform * vec4(a_pos, 1.0);
    our_color = a_color;
    TexCoord = vec2(a_tex_coord.x, a_tex_coord.y);
}