summaryrefslogtreecommitdiffstats
path: root/cwd/assets/altcraft/shaders/vert/face.vs
blob: d3caf329fab415b5ed81928214ea6dd671dff563 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#version 330 core

in vec3 pos[4];
in vec3 normal;
in vec2 uv[4];
in float uvLayer;
in float animation;
in vec3 color;
in vec2 light;
in float ambientOcclusion;

out vec3 faceTextureUv;
out vec3 faceNormal;
out vec3 faceAddColor;
out vec2 faceLight;
out float faceAmbientOcclusion;

layout (std140) uniform Globals {
    mat4 projView;
    mat4 proj;
    mat4 invProj;
    mat4 view;
    uvec2 viewportSize;
    vec4 ssaoKernels[64];
    float globalTime;
    float dayTime;
    float gamma;
};

void main() {
    gl_Position = projView * vec4(pos[gl_VertexID], 1.0f);

    faceTextureUv = vec3(uv[gl_VertexID], uvLayer);
    faceTextureUv.y -= (uv[2].y - uv[0].y) * trunc(mod(globalTime * 4.0f, animation));

    faceNormal = (view * vec4(normal, 0.0f)).xyz;
    faceAddColor = color;
    faceLight = light;
    faceAmbientOcclusion = ambientOcclusion;
}