armory/Shaders/deferred_indirect/deferred_indirect.frag.glsl

106 lines
2.2 KiB
Plaintext
Raw Normal View History

2016-08-09 23:51:40 +02:00
#version 450
#ifdef GL_ES
precision mediump float;
#endif
#include "../compiled.glsl"
2016-10-17 17:39:40 +02:00
#include "../std/gbuffer.glsl"
// octahedronWrap()
// unpackFloat()
#include "../std/math.glsl"
// envMapEquirect()
#include "../std/brdf.glsl"
2017-01-23 20:41:45 +01:00
#ifdef _Irr
#include "../std/shirr.glsl"
#endif
2016-08-09 23:51:40 +02:00
uniform sampler2D gbufferD;
uniform sampler2D gbuffer0;
uniform sampler2D gbuffer1;
uniform float envmapStrength;
2017-01-23 20:41:45 +01:00
#ifdef _Irr
//!uniform float shirr[27];
#endif
2016-08-09 23:51:40 +02:00
#ifdef _Rad
uniform sampler2D senvmapRadiance;
uniform sampler2D senvmapBrdf;
uniform int envmapNumMipmaps;
#endif
#ifdef _SSAO
uniform sampler2D ssaotex;
#endif
#ifdef _Rad
uniform vec3 eye;
uniform vec3 eyeLook;
#endif
in vec2 texCoord;
#ifdef _Rad
in vec3 viewRay;
#endif
2016-10-12 17:52:27 +02:00
out vec4 fragColor;
2016-08-09 23:51:40 +02:00
void main() {
2016-08-29 09:56:34 +02:00
vec4 g0 = texture(gbuffer0, texCoord); // Normal.xy, metallic/roughness, mask
2016-08-09 23:51:40 +02:00
vec3 n;
n.z = 1.0 - abs(g0.x) - abs(g0.y);
n.xy = n.z >= 0.0 ? g0.xy : octahedronWrap(g0.xy);
n = normalize(n);
2016-08-29 09:56:34 +02:00
vec2 metrough = unpackFloat(g0.b);
2016-08-09 23:51:40 +02:00
#ifdef _Rad
float depth = texture(gbufferD, texCoord).r * 2.0 - 1.0;
2016-10-17 17:39:40 +02:00
vec3 p = getPos(eye, eyeLook, viewRay, depth);
2016-08-09 23:51:40 +02:00
vec3 v = normalize(eye - p.xyz);
#endif
2016-10-09 16:06:18 +02:00
2016-08-09 23:51:40 +02:00
// Indirect
2017-01-23 20:41:45 +01:00
#ifdef _Irr
2016-08-09 23:51:40 +02:00
vec3 indirect = shIrradiance(n, 2.2) / PI;
2017-01-23 20:41:45 +01:00
#else
vec3 indirect = vec3(1.0);
#endif
2017-01-02 22:46:18 +01:00
#ifdef _Rad
vec3 reflectionWorld = reflect(-v, n);
float lod = getMipFromRoughness(metrough.y, envmapNumMipmaps);
vec3 prefilteredColor = textureLod(senvmapRadiance, envMapEquirect(reflectionWorld), lod).rgb;
2016-08-09 23:51:40 +02:00
#endif
#ifdef _EnvLDR
indirect = pow(indirect, vec3(2.2));
#ifdef _Rad
prefilteredColor = pow(prefilteredColor, vec3(2.2));
#endif
#endif
vec4 g1 = texture(gbuffer1, texCoord); // Basecolor.rgb, occlusion
2016-08-29 09:56:34 +02:00
vec3 albedo = surfaceAlbedo(g1.rgb, metrough.x); // g1.rgb - basecolor
2016-08-09 23:51:40 +02:00
indirect *= albedo;
#ifdef _Rad
// Indirect specular
float dotNV = max(dot(n, v), 0.0);
2016-08-29 09:56:34 +02:00
vec3 f0 = surfaceF0(g1.rgb, metrough.x);
2016-08-09 23:51:40 +02:00
2016-08-29 09:56:34 +02:00
vec2 envBRDF = texture(senvmapBrdf, vec2(metrough.y, 1.0 - dotNV)).xy;
2016-10-09 16:06:18 +02:00
indirect += prefilteredColor * (f0 * envBRDF.x + envBRDF.y);
2016-08-09 23:51:40 +02:00
#endif
2016-12-13 01:09:17 +01:00
indirect = indirect * envmapStrength;// * lightColor;
2016-08-09 23:51:40 +02:00
indirect = indirect * g1.a; // Occlusion
#ifdef _SSAO
indirect *= texture(ssaotex, texCoord).r; // SSAO
#endif
2016-10-12 17:52:27 +02:00
fragColor.rgb = indirect;
2016-08-09 23:51:40 +02:00
}