stk-code_catmod/data/shaders/transparent.frag

23 lines
436 B
GLSL
Raw Normal View History

2014-12-18 16:09:14 -05:00
#ifdef Use_Bindless_Texture
2014-08-18 11:49:44 -04:00
layout(bindless_sampler) uniform sampler2D tex;
#else
uniform sampler2D tex;
2014-08-18 11:49:44 -04:00
#endif
in vec2 uv;
2014-03-18 20:25:44 -04:00
in vec4 color;
out vec4 FragColor;
void main()
{
2014-06-25 08:53:49 -04:00
vec4 Color = texture(tex, uv);
2014-12-18 16:09:14 -05:00
#ifdef Use_Bindless_Texture
2014-08-18 11:49:44 -04:00
Color.xyz = pow(Color.xyz, vec3(2.2));
#endif
2014-06-25 08:53:49 -04:00
Color.xyz *= pow(color.xyz, vec3(2.2));
Color.a *= color.a;
// Premultiply alpha
FragColor = vec4(Color.rgb * Color.a, Color.a);
}