treesummaryrefslogcommitdiff
path: root/shaders/fbo_vert.glsl
blob: fb80df5628bc79701b33852c26294783d14bca2c (plain)
1
2
3
4
5
6
7
8
9
10
11
#version 330 core
layout (location = 0) in vec2 aPos;
layout (location = 1) in vec2 aTexCoords;

out vec2 TexCoords;

void main()
{
    gl_Position = vec4(aPos.x, aPos.y, 0.0, 1.0); 
    TexCoords = aTexCoords;
}