aboutsummaryrefslogtreecommitdiff
path: root/shaders/lightsource.vsh
blob: 3525c32b856d14e8b3591ca07e3be0b30ac052a9 (plain)
1
2
3
4
5
6
7
8
9
10
# version 330 core

layout (location = 0) in vec3 aPos;
uniform mat4 model, view, proj;


void main()
{
    gl_Position = proj * view * model * vec4(aPos, 1.0f);
}
Feel free to download, copy and edit any repo