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

in vec3 position;

uniform mat4 projView;
uniform mat4 model;

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