stk-code_catmod/data/shaders/instanced_object_pass2.frag

48 lines
1.2 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;
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;
2014-08-22 18:18:14 -04:00
#endif
uniform vec2 color_change;
2014-08-22 18:18:14 -04:00
in vec2 uv;
in vec4 color;
out vec4 FragColor;
vec3 getLightFactor(vec3 diffuseMatColor, vec3 specularMatColor, float specMapValue, float emitMapValue);
vec3 rgbToHsv(vec3 c);
vec3 hsvToRgb(vec3 c);
2014-08-22 18:18:14 -04:00
void main(void)
{
2014-12-18 16:09:14 -05:00
#ifdef Use_Bindless_Texture
vec4 col = texture(handle, uv);
2014-10-04 20:30:01 -04:00
float specmap = texture(secondhandle, uv).g;
float emitmap = texture(secondhandle, uv).b;
#ifdef SRGBBindlessFix
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;
2014-08-22 18:18:14 -04:00
#endif
if (color_change.x > 0.0)
{
vec3 old_hsv = rgbToHsv(col.rgb);
old_hsv.y = max(old_hsv.y, color_change.y);
vec3 new_color = hsvToRgb(vec3(color_change.x, old_hsv.y, old_hsv.z));
col = vec4(new_color.r, new_color.g, new_color.b, col.a);
}
2014-08-22 18:18:14 -04:00
col.xyz *= pow(color.xyz, vec3(2.2));
FragColor = vec4(getLightFactor(col.xyz, vec3(1.), specmap, emitmap) , 1.);
2014-08-22 18:18:14 -04:00
}