2014-08-18 11:49:44 -04:00
|
|
|
#ifdef GL_ARB_bindless_texture
|
|
|
|
layout(bindless_sampler) uniform sampler2D Albedo;
|
|
|
|
layout(bindless_sampler) uniform sampler2D Detail;
|
2014-10-05 14:47:13 -04:00
|
|
|
layout(bindless_sampler) uniform sampler2D SpecMap;
|
2014-08-18 11:49:44 -04:00
|
|
|
#else
|
2014-01-25 19:56:08 -05:00
|
|
|
uniform sampler2D Albedo;
|
|
|
|
uniform sampler2D Detail;
|
2014-10-05 14:47:13 -04:00
|
|
|
uniform sampler2D SpecMap;
|
2014-08-18 11:49:44 -04:00
|
|
|
#endif
|
2014-02-28 11:29:05 -05:00
|
|
|
|
|
|
|
#if __VERSION__ >= 130
|
2014-01-25 19:56:08 -05:00
|
|
|
in vec2 uv;
|
|
|
|
in vec2 uv_bis;
|
|
|
|
out vec4 FragColor;
|
2014-02-28 11:29:05 -05:00
|
|
|
#else
|
|
|
|
varying vec2 uv;
|
|
|
|
varying vec2 uv_bis;
|
|
|
|
#define FragColor gl_FragColor
|
|
|
|
#endif
|
|
|
|
|
2014-11-22 09:59:22 -05:00
|
|
|
vec3 getLightFactor(vec3 diffuseMatColor, vec3 specularMatColor, float specMapValue, float emitMapValue);
|
2014-01-25 19:56:08 -05:00
|
|
|
|
|
|
|
void main(void)
|
|
|
|
{
|
|
|
|
vec4 color = texture(Albedo, uv);
|
2014-08-18 11:49:44 -04:00
|
|
|
#ifdef GL_ARB_bindless_texture
|
2014-08-28 15:59:55 -04:00
|
|
|
#ifdef SRGBBindlessFix
|
2014-08-18 11:49:44 -04:00
|
|
|
color.xyz = pow(color.xyz, vec3(2.2));
|
2014-08-28 15:59:55 -04:00
|
|
|
#endif
|
2014-08-18 11:49:44 -04:00
|
|
|
#endif
|
2014-03-21 13:36:47 -04:00
|
|
|
vec4 detail = texture(Detail, uv_bis);
|
|
|
|
color *= detail;
|
2014-10-05 14:47:13 -04:00
|
|
|
float specmap = texture(SpecMap, uv).g;
|
2014-11-22 09:59:22 -05:00
|
|
|
FragColor = vec4(getLightFactor(color.xyz, vec3(1.), specmap, 0.), 1.);
|
2014-01-25 19:56:08 -05:00
|
|
|
}
|