blob: f9af02c8a7bca14dd23923d9268747dfb12a1f2d (
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
|
#version 330 core
in vec3 faceTextureUv;
in vec3 faceAddColor;
in vec3 faceNormal;
in vec2 faceLight;
in float faceAmbientOcclusion;
layout (location = 0) out vec4 color;
layout (location = 1) out vec4 normal;
layout (location = 2) out vec4 light;
uniform sampler2DArray textureAtlas;
void main() {
vec4 col = texture(textureAtlas, faceTextureUv);
if (col.a < 0.3)
discard;
color = vec4(col.rgb * faceAddColor.rgb, 1.0f);
normal = vec4(faceNormal, 1.0f);
light = vec4(faceLight / 15.0f, faceAmbientOcclusion, 1.0f);
}
|