stk-code_catmod/data/shaders/instanced_object_unlit.frag

27 lines
476 B
GLSL
Raw Normal View History

2014-12-18 16:09:14 -05:00
#ifndef Use_Bindless_Texture
2014-08-26 13:46:02 -04:00
uniform sampler2D tex;
#endif
2014-12-18 16:09:14 -05:00
#ifdef Use_Bindless_Texture
2014-08-26 13:46:02 -04:00
flat in sampler2D handle;
#endif
in vec2 uv;
in vec4 color;
out vec4 FragColor;
void main(void)
{
2014-12-18 16:09:14 -05:00
#ifdef Use_Bindless_Texture
2014-08-26 13:46:02 -04:00
vec4 col = texture(handle, uv);
#ifdef SRGBBindlessFix
2014-08-26 13:46:02 -04:00
col.xyz = pow(col.xyz, vec3(2.2));
#endif
2014-08-26 13:46:02 -04:00
#else
vec4 col = texture(tex, uv);
#endif
col.xyz *= pow(color.xyz, vec3(2.2));
if (col.a < 0.5) discard;
FragColor = vec4(col.xyz, 1.);
}