aboutsummaryrefslogtreecommitdiff
path: root/apps/openmb/resources/shaders/occlusion.vert
blob: 9d95f3a5321ed9f03e135328fceb5d797df518bb (plain)
1
2
3
4
5
6
7
8
9
10
11
#version 330 core
layout (location = 0) in vec3 aPos;

uniform mat4 model;
uniform mat4 view;
uniform mat4 proj;

void main()
{
    gl_Position = proj * view * model * vec4(aPos, 1.0);
}