mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-01 05:21:02 +00:00
918c3af095
While I could reconstruct the position from the screen coords and depth, this is easier and good enough for now. Reconstruction is an optimization thing.
34 lines
845 B
GLSL
34 lines
845 B
GLSL
#version 450
|
|
layout (set = 0, binding = 1) uniform sampler2DArray Skin;
|
|
|
|
layout (push_constant) uniform PushConstants {
|
|
layout (offset = 68)
|
|
uint base_color;
|
|
uint colorA;
|
|
uint colorB;
|
|
vec4 fog;
|
|
vec4 color;
|
|
};
|
|
|
|
layout (location = 0) in vec2 st;
|
|
layout (location = 1) in vec4 position;
|
|
layout (location = 2) in vec3 normal;
|
|
|
|
layout (location = 0) out vec4 frag_color;
|
|
layout (location = 1) out vec4 frag_normal;
|
|
layout (location = 2) out vec4 frag_position;
|
|
|
|
void
|
|
main (void)
|
|
{
|
|
vec4 c;
|
|
int i;
|
|
vec3 light = vec3 (0);
|
|
c = texture (Skin, vec3 (st, 0)) * unpackUnorm4x8(base_color);
|
|
c += texture (Skin, vec3 (st, 1)) * unpackUnorm4x8(colorA);
|
|
c += texture (Skin, vec3 (st, 2)) * unpackUnorm4x8(colorB);
|
|
|
|
frag_color = c;
|
|
frag_normal = vec4(normal, 1);
|
|
frag_position = position;
|
|
}
|