Jump to content
Game-Labs Forum

Super Sampling SSAA


Recommended Posts

Can we get Super Sampling option in NA? for those who can afford new Amd Zen systems. :D

 

Look here:

https://www.assetstore.unity3d.com/en/#!/content/37214

 

I know we already have some of these:

 

SSAA, or Super-Sample Anti-Aliasing is a brute force method of anti-aliasing. It results in the best image qualityicon1.pngbut comes at a tremendous resource cost. SSAA works by rendering the scene at a higher resolution, 2x SSAA renders the scene at twice the resolution along each axis (4x the pixel count), 4x SSAA renders the scene at four times the resolution along each axis (16x the pixel) count, and 8x SSAA renders the scene at eight times the resolution along each axis (64x the pixel count). The final image is produced by downsampling the massive source image using an averaging filter. This acts as a low pass filter which removes the high frequency components that caused the jaggedness.

MSAA, or Multi-Sample Anti-Aliasing is an optimization of SSAA that reduces the amount of pixel shader evaluations that need to be computed by focusing on overlapping regions of the scene. The result is antialiasing along edges that is on par with SSAA and less anti-aliasing along surfaces as these make up the bulk of SSAA computations. MSAA is substantially less computationally expensive than SSAA and results in comparable image quality.

FXAA, or Fast Approximate Anti-Aliasing is an Anti-Aliasing technique that is performed entirely in post processing. FXAA operates on the rasterized image rather than the scene geometry. As a consequence, forcing FXAA or using FXAA incorrectly can result in the FXAA filter smoothing out parts of the visual overlay that are usually kept sharp for reasons of clarity as well as smoothing out textures. FXAA is inferior to MSAA but is almost free computationally and is thus desirable on low end platforms.

Ambient Occlusion is a set of methods used to assist in simulating the effects of ambient light on geometry, in particular it is used to estimate how exposed a surface is to ambient light. The use of ambient light over point light allows designers to combine indoor and outdoor scenes and use variable day/night cycles without compromising the visual aspects of the scene.
Point light sources work very well indoors, but using a directional point light source to simulate the sun and various atmospheric effects doesn't work very well. Instead, the brightness of the entire scene can be adjusted based on the occlusion of various surfaces.

True Ambient Occlusion cannot currently be done in real time on modernicon1.png gaming machines, it's too computationally complex. Instead, video games use several methods to approximate it. There are at least three main methods of approximating ambient occlusion, Screen-Space Ambient Occlusion (SSAO), Horizon-Based Ambient Occlusion (HBAO), and High Definition Ambient Occlusion (HDAO).

Like FXAA, SSAO is pixel shader based and works independently of the scene geometry. It examines the depth buffer to search for pixels that may cause occlusion. It's an older method, It does not have a high performance hit but it does improve visual quality somewhat.

HBAO and HDAO go a bit further and attempt to reconstruct a local part of the scene to obtain a better approximation. Both are more computationally expensive than SSAO and HDAO supposedly has a greater performance hit of the two, but I haven't done any experiments on my own.

Link to comment
Share on other sites

Anything but FXAA or SSAA. MSAA, MLAA, EQAA, that NVidia one... TXAA was it...? But why SSAA? It's not like NA is easy on the rigs as is, pack it tight with extreme SS and you are sure to end up with a slide show. 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...