summaryrefslogtreecommitdiffstats
path: root/cwd/assets/altcraft/shaders/frag/light.fs
blob: 73686cc56b0ea7e133afcb60b28d1639434255ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#version 330 core

out vec4 fragColor;

in vec2 uv;

uniform sampler2D color;
uniform sampler2D normal;
uniform sampler2D depthStencil;

void main() {
    vec4 c = texture(color, uv);
    vec4 n = texture(normal, uv);
    float d = texture(depthStencil, uv).r;
    fragColor = n;
}