stk-code_catmod/data/shaders/object_pass2.frag

27 lines
551 B
GLSL
Raw Normal View History

2014-08-18 11:49:44 -04:00
#ifdef GL_ARB_bindless_texture
layout(bindless_sampler) uniform sampler2D Albedo;
#else
uniform sampler2D Albedo;
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;
2014-03-21 13:36:47 -04:00
vec3 getLightFactor(float specMapValue);
void main(void)
{
2014-08-18 11:49:44 -04:00
#ifdef GL_ARB_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-04-06 16:19:10 -04:00
vec3 LightFactor = getLightFactor(1.);
2014-06-28 17:01:28 -04:00
FragColor = vec4(col.xyz * LightFactor, 1.);
}