2020-01-26 10:05:39 +00:00
|
|
|
#version 450
|
|
|
|
#extension GL_ARB_separate_shader_objects : enable
|
|
|
|
|
|
|
|
layout(push_constant) uniform PushConstant
|
|
|
|
{
|
2020-05-18 19:04:46 +00:00
|
|
|
layout(offset = 68) float postprocess;
|
|
|
|
layout(offset = 72) float gamma;
|
2020-01-26 10:05:39 +00:00
|
|
|
} pc;
|
|
|
|
|
|
|
|
layout(set = 0, binding = 0) uniform sampler2D sTexture;
|
|
|
|
|
|
|
|
layout(location = 0) in vec2 texCoord;
|
|
|
|
layout(location = 0) out vec4 fragmentColor;
|
|
|
|
|
2020-05-18 19:04:46 +00:00
|
|
|
void main()
|
2020-01-26 10:05:39 +00:00
|
|
|
{
|
|
|
|
// apply any additional world-only postprocessing effects here (if enabled)
|
|
|
|
if (pc.postprocess > 0.0)
|
|
|
|
{
|
|
|
|
//gamma + color intensity bump
|
|
|
|
fragmentColor = vec4(pow(texture(sTexture, texCoord).rgb * 1.5, vec3(pc.gamma)), 1.0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fragmentColor = texture(sTexture, texCoord);
|
|
|
|
}
|
|
|
|
}
|