mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 15:22:16 +00:00
11 lines
280 B
GLSL
11 lines
280 B
GLSL
|
|
layout(location=0) in vec2 TexCoord;
|
|
layout(location=0) out vec4 FragColor;
|
|
|
|
layout(binding=0) uniform sampler2D SceneTexture;
|
|
|
|
void main()
|
|
{
|
|
vec4 color = texture(SceneTexture, Offset + TexCoord * Scale);
|
|
FragColor = vec4(max(max(color.r, color.g), color.b), 0.0, 0.0, 1.0);
|
|
}
|