0
0
Fork 0
mirror of https://github.com/ZDoom/raze-gles.git synced 2025-02-13 15:11:46 +00:00
raze-gles/wadsrc/static/engine/shaders/pp/bloomcombine.fp

11 lines
192 B
Text
Raw Normal View History

layout(location=0) in vec2 TexCoord;
layout(location=0) out vec4 FragColor;
layout(binding=0) uniform sampler2D Bloom;
void main()
{
FragColor = vec4(texture(Bloom, TexCoord).rgb, 0.0);
}