2014-05-17 21:19:18 -04:00
|
|
|
// See http://www.ozone3d.net/tutorials/glsl_texturing_p04.php for ref
|
|
|
|
|
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 tex;
|
|
|
|
#else
|
2014-05-17 21:01:24 -04:00
|
|
|
uniform sampler2D tex;
|
2014-08-18 11:49:44 -04:00
|
|
|
#endif
|
2013-11-30 16:33:06 -05:00
|
|
|
|
2014-02-28 11:29:05 -05:00
|
|
|
in vec3 nor;
|
2014-01-19 13:31:00 -05:00
|
|
|
out vec4 FragColor;
|
2014-02-28 11:29:05 -05:00
|
|
|
|
2014-05-17 21:19:18 -04:00
|
|
|
vec4 getPosFromUVDepth(vec3 uvDepth, mat4 InverseProjectionMatrix);
|
2014-11-22 09:59:22 -05:00
|
|
|
vec3 getLightFactor(vec3 diffuseMatColor, vec3 specularMatColor, float specMapValue, float emitMapValue);
|
2013-11-30 16:33:06 -05:00
|
|
|
|
|
|
|
void main() {
|
2014-05-17 21:19:18 -04:00
|
|
|
vec3 texc = gl_FragCoord.xyz / vec3(screen, 1.);
|
|
|
|
vec3 u = getPosFromUVDepth(texc, InverseProjectionMatrix).xyz;
|
|
|
|
vec3 r = reflect(u, nor);
|
|
|
|
|
|
|
|
float m = 2.0 * sqrt(r.x * r.x + r.y * r.y + (r.z + 1.0) * (r.z + 1.0));
|
2014-05-17 21:39:53 -04:00
|
|
|
r.y = - r.y;
|
2014-05-17 21:19:18 -04:00
|
|
|
vec4 detail0 = texture(tex, r.xy / m + .5);
|
2014-12-18 16:09:14 -05:00
|
|
|
#ifdef Use_Bindless_Texture
|
2014-08-28 15:59:55 -04:00
|
|
|
#ifdef SRGBBindlessFix
|
2014-08-18 11:49:44 -04:00
|
|
|
detail0.xyz = pow(detail0.xyz, vec3(2.2));
|
2014-08-28 15:59:55 -04:00
|
|
|
#endif
|
2014-08-18 11:49:44 -04:00
|
|
|
#endif
|
2013-11-30 16:33:06 -05:00
|
|
|
|
2014-11-22 09:59:22 -05:00
|
|
|
FragColor = vec4(getLightFactor(detail0.xyz, vec3(1.), 0., 0.), 1.);
|
2013-11-30 16:33:06 -05:00
|
|
|
}
|