gzdoom-gles/wadsrc/static/shaders/glsl/bloomextract.fp

13 lines
397 B
Text
Raw Normal View History

2016-07-27 19:50:30 +00:00
in vec2 TexCoord;
layout(location=0) out vec4 FragColor;
layout(binding=0) uniform sampler2D SceneTexture;
layout(binding=1) uniform sampler2D ExposureTexture;
2016-07-27 19:50:30 +00:00
void main()
{
float exposureAdjustment = texture(ExposureTexture, vec2(0.5)).x;
2016-08-12 15:44:59 +00:00
vec4 color = texture(SceneTexture, Offset + TexCoord * Scale);
FragColor = max(vec4((color.rgb + vec3(0.001)) * exposureAdjustment - 1, 1), vec4(0));
2016-07-27 19:50:30 +00:00
}