27 lines
680 B
GLSL
27 lines
680 B
GLSL
uniform sampler2D ntex;
|
|
uniform sampler2D dtex;
|
|
|
|
out vec4 Diff;
|
|
out vec4 Spec;
|
|
|
|
#stk_include "utils/decodeNormal.frag"
|
|
#stk_include "utils/getPosFromUVDepth.frag"
|
|
#stk_include "utils/DiffuseIBL.frag"
|
|
#stk_include "utils/SpecularIBL.frag"
|
|
|
|
void main(void)
|
|
{
|
|
vec2 uv = gl_FragCoord.xy / screen;
|
|
vec3 normal = normalize(DecodeNormal(2. * texture(ntex, uv).xy - 1.));
|
|
|
|
Diff = vec4(0.25 * DiffuseIBL(normal), 1.);
|
|
|
|
float z = texture(dtex, uv).x;
|
|
|
|
vec4 xpos = getPosFromUVDepth(vec3(uv, z), InverseProjectionMatrix);
|
|
vec3 eyedir = -normalize(xpos.xyz);
|
|
float specval = texture(ntex, uv).z;
|
|
|
|
Spec = vec4(.25 * SpecularIBL(normal, eyedir, specval), 1.);
|
|
}
|