mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
ad7aaa8f2a
OpenGL has been supporting this since version 3.3 and Vulkan requires it so it's the way to go.
12 lines
318 B
GLSL
12 lines
318 B
GLSL
|
|
in vec2 TexCoord;
|
|
layout(location=0) out vec4 FragColor;
|
|
|
|
uniform sampler2D ExposureTexture;
|
|
|
|
void main()
|
|
{
|
|
float light = texture(ExposureTexture, TexCoord).x;
|
|
float exposureAdjustment = 1.0 / max(ExposureBase + light * ExposureScale, ExposureMin);
|
|
FragColor = vec4(exposureAdjustment, 0.0, 0.0, ExposureSpeed);
|
|
}
|