1
0
Fork 0
fgdata/Shaders/HDR/skydome.frag

64 lines
2.1 KiB
GLSL
Raw Normal View History

2021-04-10 09:14:16 +00:00
#version 330 core
out vec4 fragColor;
in vec3 vRayDir;
in vec3 vRayDirView;
2021-04-10 09:14:16 +00:00
uniform bool sun_disk;
uniform sampler2D sky_view_lut;
uniform sampler2D transmittance_lut;
uniform vec3 fg_SunDirection;
2021-04-10 09:14:16 +00:00
uniform mat4 osg_ModelViewMatrix;
const float PI = 3.141592653;
const vec3 EXTRATERRESTRIAL_SOLAR_ILLUMINANCE = vec3(128.0);
const float sun_solid_angle = 0.545*PI/180.0; // ~half a degree
const float sun_cos_solid_angle = cos(sun_solid_angle);
2021-04-10 09:14:16 +00:00
void main()
{
vec3 rayDir = normalize(vRayDir);
float azimuth = atan(rayDir.y, rayDir.x) / PI * 0.5 + 0.5;
// Undo the non-linear transformation from the sky-view LUT
float l = asin(rayDir.z);
float elev = sqrt(abs(l) / (PI * 0.5)) * sign(l) * 0.5 + 0.5;
2021-04-10 09:14:16 +00:00
vec3 color = texture(sky_view_lut, vec2(azimuth, elev)).rgb;
color *= EXTRATERRESTRIAL_SOLAR_ILLUMINANCE;
if (sun_disk) {
// Render the Sun disk
vec3 rayDirView = normalize(vRayDirView);
float cosTheta = dot(rayDirView, fg_SunDirection);
if (cosTheta >= sun_cos_solid_angle) {
vec4 groundPoint = osg_ModelViewMatrix * vec4(0.0, 0.0, 0.0, 1.0);
float altitude = length(groundPoint);
float scaledAltitude = altitude / 100000.0;
vec3 up = normalize(vec4(0.0, 0.0, 0.0, 1.0) - groundPoint).xyz;
float sunZenithCosTheta = dot(rayDirView, up);
vec2 coords = vec2(sunZenithCosTheta * 0.5 + 0.5,
clamp(scaledAltitude, 0.0, 1.0));
vec3 transmittance = texture(transmittance_lut, coords).rgb;
// Limb darkening
// http://www.physics.hmc.edu/faculty/esin/a101/limbdarkening.pdf
vec3 u = vec3(1.0);
vec3 a = vec3(0.397, 0.503, 0.652);
float centerToEdge = 1.0 - (cosTheta - sun_cos_solid_angle)
/ (1.0 - sun_cos_solid_angle);
float mu = sqrt(max(1.0 - centerToEdge * centerToEdge, 0.0));
vec3 factor = vec3(1.0) - u * (vec3(1.0) - pow(vec3(mu), a));
color += EXTRATERRESTRIAL_SOLAR_ILLUMINANCE * transmittance * factor;
}
}
2021-04-10 09:14:16 +00:00
fragColor = vec4(color, 1.0);
}