stk-code_catmod/data/shaders/instanced_objectref_pass2.frag

54 lines
1.5 KiB
GLSL
Raw Normal View History

2014-12-18 16:09:14 -05:00
#ifndef Use_Bindless_Texture
2014-08-22 18:18:14 -04:00
uniform sampler2D Albedo;
2014-10-04 20:30:01 -04:00
uniform sampler2D SpecMap;
uniform sampler2D colorization_mask;
2014-08-22 18:18:14 -04:00
#endif
2014-12-18 16:09:14 -05:00
#ifdef Use_Bindless_Texture
2014-08-22 18:18:14 -04:00
flat in sampler2D handle;
2014-10-04 20:30:01 -04:00
flat in sampler2D secondhandle;
flat in sampler2D thirdhandle;
2014-08-22 18:18:14 -04:00
#endif
in vec2 uv;
in vec4 color;
flat in vec2 color_change;
2014-08-22 18:18:14 -04:00
out vec4 FragColor;
#stk_include "utils/getLightFactor.frag"
#stk_include "utils/rgb_conversion.frag"
2014-08-22 18:18:14 -04:00
void main(void)
{
2014-12-18 16:09:14 -05:00
#ifdef Use_Bindless_Texture
2014-08-22 18:18:14 -04:00
vec4 col = texture(handle, uv);
2014-10-04 20:30:01 -04:00
float specmap = texture(secondhandle, uv).g;
float mask = texture(thirdhandle, uv).a;
#ifdef SRGBBindlessFix
2014-08-22 18:18:14 -04:00
col.xyz = pow(col.xyz, vec3(2.2));
#endif
2014-08-22 18:18:14 -04:00
#else
vec4 col = texture(Albedo, uv);
2014-10-04 20:30:01 -04:00
float specmap = texture(SpecMap, uv).g;
float emitmap = texture(SpecMap, uv).b;
float mask = texture(colorization_mask, uv).a;
2014-08-22 18:18:14 -04:00
#endif
if (col.a * color.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
if (color_change.x > 0.0)
{
vec3 old_hsv = rgbToHsv(col.rgb);
float mask_step = step(mask, 0.5);
vec2 new_xy = mix(vec2(old_hsv.x, old_hsv.y), vec2(color_change.x, max(old_hsv.y, color_change.y)), vec2(mask_step, mask_step));
vec3 new_color = hsvToRgb(vec3(new_xy.x, new_xy.y, old_hsv.z));
col = vec4(new_color.r, new_color.g, new_color.b, col.a);
}
FragColor = vec4(getLightFactor(col.xyz, vec3(1.), specmap, emitmap), 1.);
2014-08-22 18:18:14 -04:00
}