mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 21:02:50 +00:00
0a79348ce9
Reduced the gamma correction a bit and increased the intensity of dynamic lights. Not sure the latter is correct, but it looks much better.
20 lines
492 B
GLSL
20 lines
492 B
GLSL
#version 450
|
|
|
|
layout (input_attachment_index = 0, set = 0, binding = 0) uniform subpassInput opaque;
|
|
layout (input_attachment_index = 1, set = 0, binding = 1) uniform subpassInput translucent;
|
|
|
|
layout (location = 0) out vec4 frag_color;
|
|
|
|
void
|
|
main (void)
|
|
{
|
|
vec3 o;
|
|
vec4 t;
|
|
vec3 c;
|
|
|
|
o = subpassLoad (opaque).rgb;
|
|
t = subpassLoad (translucent);
|
|
c = mix (o, t.rgb, t.a);
|
|
c = pow (c, vec3(0.83));//FIXME make gamma correction configurable
|
|
frag_color = vec4 (c, 1);
|
|
}
|