This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/draw/engines/eevee/shaders/volumetric_resolve_frag.glsl

28 lines
902 B
GLSL

/* Based on Frosbite Unified Volumetric.
* https://www.ea.com/frostbite/news/physically-based-unified-volumetric-rendering-in-frostbite */
/* Step 4 : Apply final integration on top of the scene color. */
uniform sampler2D inSceneDepth;
/* Blend equation is : FragColor0 + FragColor1 * DstColor */
layout(location = 0, index = 0) out vec4 FragColor0;
layout(location = 0, index = 1) out vec4 FragColor1;
void main()
{
vec2 uvs = gl_FragCoord.xy / vec2(textureSize(inSceneDepth, 0));
float scene_depth = texture(inSceneDepth, uvs).r;
vec3 transmittance, scattering;
volumetric_resolve(uvs, scene_depth, transmittance, scattering);
/* Approximate volume alpha by using a monochromatic transmittance
* and adding it to the scene alpha. */
float alpha = dot(transmittance, vec3(1.0 / 3.0));
FragColor0 = vec4(scattering, 1.0 - alpha);
FragColor1 = vec4(transmittance, alpha);
}