summaryrefslogtreecommitdiffstats
path: root/cwd/assets/altcraft/shaders/vert/light.vs
blob: f837ebef26b9f11ef7d65af6ca8d8ad19c2e6124 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#version 330 core

in vec2 pos;
in vec2 uvPos;

out vec2 uv;

void main() {
    gl_Position = vec4(pos.x, pos.y, 0.0, 1.0);
    uv = uvPos;
}