stk-code_catmod/data/shaders/object_unlit.frag

29 lines
545 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
2014-01-25 15:00:02 -05:00
uniform sampler2D tex;
2014-08-18 11:49:44 -04:00
#endif
2014-01-25 15:00:02 -05:00
in vec2 uv;
in vec4 color;
2014-01-25 15:00:02 -05:00
out vec4 FragColor;
void main(void)
{
vec4 col = texture(tex, uv);
2014-12-18 16:09:14 -05:00
#ifdef Use_Bindless_Texture
#ifdef SRGBBindlessFix
2014-08-18 11:49:44 -04:00
col.xyz = pow(col.xyz, vec3(2.2));
#endif
2014-08-18 11:49:44 -04:00
#endif
2014-08-06 20:12:13 -04:00
if (col.a < 0.5) discard;
#if defined(sRGB_Framebuffer_Usable) || defined(Advanced_Lighting_Enabled)
col.xyz *= pow(color.xyz, vec3(2.2));
#else
col.xyz *= color.xyz;
#endif
FragColor = vec4(col.xyz, 1.);
2014-01-25 15:00:02 -05:00
}