gl_ssao icon indicating copy to clipboard operation
gl_ssao copied to clipboard

optimized screen-space ambient occlusion, cache-aware hbao

Results 2 gl_ssao issues
Sort by recently updated
recently updated
newest added

Currently, scale factor of the projection (used to compute radius to screen), is computed as [`float(height) / (tanf(projection.fov * 0.5f) * 2.0f);`](https://github.com/nvpro-samples/gl_ssao/blob/cb9ddbdd17ae197107b5be064a7168b984634e87/ssao.cpp#L738). `projection.fov` is `45`, so these are presumably degrees...