mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
24 lines
565 B
GLSL
24 lines
565 B
GLSL
#version 450
|
|
|
|
layout(push_constant) uniform PushConstant
|
|
{
|
|
// vertex shader has 'mat4 vpMatrix;' at begin.
|
|
layout(offset = 68) float gamma;
|
|
} pc;
|
|
|
|
layout(set = 0, binding = 0) uniform sampler2D sTexture;
|
|
|
|
layout(location = 0) in vec2 texCoord;
|
|
layout(location = 1) in vec4 color;
|
|
layout(location = 2) in float aTreshold;
|
|
|
|
layout(location = 0) out vec4 fragmentColor;
|
|
|
|
void main()
|
|
{
|
|
fragmentColor = texture(sTexture, texCoord) * color;
|
|
if(fragmentColor.a < aTreshold)
|
|
discard;
|
|
|
|
fragmentColor = vec4(pow(fragmentColor.rgb, vec3(pc.gamma)), fragmentColor.a);
|
|
}
|