mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
17 lines
500 B
GLSL
17 lines
500 B
GLSL
#version 450
|
|
|
|
layout(set = 0, binding = 0) uniform sampler2D sTexture;
|
|
layout(set = 2, binding = 0) uniform sampler2D sLightmap;
|
|
|
|
layout(location = 0) in vec2 texCoord;
|
|
layout(location = 1) in vec2 texCoordLmap;
|
|
layout(location = 2) in float viewLightmaps;
|
|
|
|
layout(location = 0) out vec4 fragmentColor;
|
|
|
|
void main()
|
|
{
|
|
vec4 color = texture(sTexture, texCoord);
|
|
vec4 light = texture(sLightmap, texCoordLmap);
|
|
fragmentColor = (1.0 - viewLightmaps) * color * light + viewLightmaps * light;
|
|
}
|