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

in vec3 position;

out vec3 pos;

uniform mat4 projView;
uniform mat4 model;

void main() {
    pos = position;
    gl_Position = projView * model * vec4(position, 1);
}