Screen Space Ambient Occlusion (SSAO): Difference between revisions
(TODO for documenting HBAO ambient occlusion, which is superior to SSAO.) |
|||
Line 1: | Line 1: | ||
{{stub}} | {{stub}} | ||
{{Todo|Document about HBAO, alternative to SSAO which can be forced through GPU driver control panel (or NVIDIA Profile Inspector).}} | |||
[[File:AmbientOcclusionExample.jpg|right|210px|thumb|An example of traditional ''prerendered'' ambient occlusion in Blender 3D. SSAO attempts to mimic this look in real-time.]] | [[File:AmbientOcclusionExample.jpg|right|210px|thumb|An example of traditional ''prerendered'' ambient occlusion in Blender 3D. SSAO attempts to mimic this look in real-time.]] | ||
Line 16: | Line 17: | ||
== SSAO in the Source Engine == | == SSAO in the Source Engine == | ||
* The original release of {{dota2|4}} is the only {{src|4}} games that support SSAO. | * The original release of {{dota2|4}} aswell as {{sfm|1}} is the only {{src|4}} games and software that support SSAO. | ||
* However, as SSAO is a post-processing effect, you can use third-party software (ReShade), or [[Source Shader Editor]] to add SSAO. Alternatively, it is possible to use the superior HBAO ambient occlusion, which can be forced through GPU driver control panel (or by using NVIDIA Profile Inspector). | |||
{{Note|For baked Ambient Occlusion maps per model within the Source Engine, see [[$ambientocclusion]].}} | {{Note|For baked Ambient Occlusion maps per model within the Source Engine, see [[$ambientocclusion]].}} | ||
{{Note|A post process SSAO shader currently ships with the [[Source_shader_editor| Source Shader Editor]].}} | {{Note|A post process SSAO shader currently ships with the [[Source_shader_editor| Source Shader Editor]].}} |
Revision as of 01:41, 12 November 2024

Screen Space Ambient Occlusion (SSAO) works by examining an onscreen pixel, and then comparing its location in a depth buffer to the pixels around it. Pixels which are close together but not coplanar (on the same face) are shaded to simulate soft shadows. To maintain playable framerates, it is not possible to sample every pixel every frame, so random sampling is used, which will inevitably create noise/grain which may be more noticeable with movement. To counter this, the SSAO pass is often blurred to remove such grain.
As with traditional AO, SSAO is completely independent of the normal lighting system. This means that both the performance and appearance of the shader are unaffected by the lights used in a level.
The depth buffer is measured from the camera, and so SSAO is view-dependent - the size and locations of the "shadows" created by SSAO may change as the player moves the camera around. Additionally, the shading may look different along the edges of the screen - this can be combated by rendering additional information outside of the current camera's bounds.
Source Filmmaker
Source Filmmaker includes an SSAO option (labelled "Ambient Occlusion"), accessible by right-clicking on the viewport. The default setting is very grainy.
SSAO in the Source Engine
- The original release of
Dota 2 aswell as Source Filmmaker is the only
Source games and software that support SSAO.
- However, as SSAO is a post-processing effect, you can use third-party software (ReShade), or Source Shader Editor to add SSAO. Alternatively, it is possible to use the superior HBAO ambient occlusion, which can be forced through GPU driver control panel (or by using NVIDIA Profile Inspector).


