stk-code_catmod/data/shaders/object_pass2.frag

30 lines
764 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 Albedo;
2014-10-05 14:47:13 -04:00
layout(bindless_sampler) uniform sampler2D SpecMap;
2014-08-18 11:49:44 -04:00
#else
uniform sampler2D Albedo;
2014-10-05 14:47:13 -04:00
uniform sampler2D SpecMap;
2014-08-18 11:49:44 -04:00
#endif
2014-01-25 19:56:08 -05:00
in vec2 uv;
2014-06-28 17:01:28 -04:00
in vec4 color;
out vec4 FragColor;
vec3 getLightFactor(vec3 diffuseMatColor, vec3 specularMatColor, float specMapValue, float emitMapValue);
void main(void)
{
2014-12-18 16:09:14 -05:00
#ifdef Use_Bindless_Texture
vec4 col = texture(Albedo, uv);
#ifdef SRGBBindlessFix
col.xyz = pow(col.xyz, vec3(2.2));
#endif
2014-08-18 11:49:44 -04:00
#else
2014-07-07 19:35:04 -04:00
vec4 col = texture(Albedo, uv);
2014-08-18 11:49:44 -04:00
#endif
2014-07-07 19:35:04 -04:00
col.xyz *= pow(color.xyz, vec3(2.2));
2014-10-05 14:47:13 -04:00
float specmap = texture(SpecMap, uv).g;
2014-12-21 03:58:03 -05:00
float emitmap = texture(SpecMap, uv).b;
FragColor = vec4(getLightFactor(col.xyz, vec3(1.), specmap, emitmap), 1.);
}