treesummaryrefslogcommitdiff
path: root/shaders/vert_shadowmap.glsl
blob: 50847bbd0a7ab279b5e0e97bb8ae72893e014156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#version 330 core

layout (location = 0) in vec3 pos;
layout (location = 1) in vec3 normal;

out vec3 FragPos;
out vec3 LocalPos;
out vec3 Normal;

uniform mat4 model;
uniform mat4 lightView;
uniform mat4 projection;

void main()
{
  gl_Position = projection * lightView * model * vec4(pos, 1.0);
  FragPos = vec3(model * vec4(pos, 1));
  LocalPos = pos;
  Normal = normal;
}