Anti-aliasing

From Valve Developer Community
Jump to: navigation, search
English (en)
Edit
Comparison of no anti-aliasing and 8x MSAA. Click to enlarge

Anti-aliasing is a graphics technique extensively employed in Valve Valve's video games, such as those in the Half-Life Half-Life series, as well as in other software applications developed by Valve, including Steam Steam and Source Filmmaker Source Filmmaker, etc. This technique is utilized to enhance the visual quality and reduce the jagged edges, or jaggies, that can appear in computer-generated imagery.

Computer monitors are essentially a large grid of squares that can be set to any color or brightness. As such, it is impossible to draw a perfectly straight line, because no matter how many squares there are, it will never be able to make a perfectly smooth diagonal. This creates a stair-step pattern that is very noticeable the lower the resolution is, which is often referred to in the Video game world as "Aliasing". Wikipedia icon Spatial anti-aliasing, often referred to simply as Anti-aliasing, is designed to combat the problems of aliasing. In simple terms, Anti aliasing is designed to smooth out that stair-step pattern in images and make them look less pixelated, while not changing the resolution of the final image.

Overview

MSAA

Wikipedia icon MultiSample Anti-Aliasing (MSAA) was the gaming industry standard of anti-aliasing (prior to the TAA gradually replacing MSAA in mid-late 2010s as games transitioned from forward rendering to deferred rendering), and as such is the only version available (alongside CSAA on NVIDIA cards prior to Maxwell) in all Source Source games before Counter-Strike: Global Offensive Counter-Strike: Global Offensive, and later available in GoldSrc GoldSrc in 2013, with only MSAA 4X being available, which is enabled by default. Essentially, if a polygon is crossing a multisample point, or subpixel, it detects how many of its neighboring points are also being intersected, then takes the color of that polygon and adds it over the existing image to create a slightly smother line. This creates a smoother line, but does not completely remove the stair-step pattern (especially on alpha textures) without combining FXAA/SMAA/other post-FX AA methods with MSAA, plus games that use deferred rendering and MSAA may not work properly and can cause various other issues. This is usually sufficient for most users, however.

All Source games contain 4 different settings of MSAA, which include:

  • 2x
  • 4x - Default level in post-SteamPipe GoldSrc GoldSrc (can be enhanced in GPU control panels)
  • 6x - (only in Source 2004 Source 2004) only works with certain GPUs or drivers from that era (removed in favor of 8x)
  • 8x

What this does is add more subpixels to a specified location and increases the accuracy of the multisampling, at the cost of performance.

Warning.pngWarning:If MSAA is enabled, ReShade depth buffer detection will stops working, which means that you are unable to use some AA methods for example, or even shaders such as SSAO in general.
Note.pngNote:Alpha to coverage requires MSAA, as it is a multisampling method.

CSAA (Nvidia Nvidia only [Obsolete-notext.png Deprecated])

Coverage Sampling Anti-Aliasing (CSAA) was a NVIDIA-exclusive method of anti-aliasing, introduced with GeForce 8000 Series. It aims to further reduce the additional stress that MSAA puts on the system, with NVIDIA claiming that a CSAA-rendered image will rival 8x-16x MSAA whilst only putting a load on the system comparable to 4x MSAA. It does this by reducing the number of settings each sample determines (by creating a new sample for coverage) whilst increasing the overall number of samples.

However, by the release of Maxwell based GPUs such as GTX 750 Ti, GTX 800M/900 series in 2014, and newer NVIDIA graphics card (or drivers released around Feb 2014 onwards) drops support for CSAA completely, and MFAA completely succeeded it, with lots of limitations however.

FXAA

Wikipedia icon Fast Approximate Anti-Aliasing (FXAA) is a post-processing effect with a low performance cost. The main advantage of this technique over regular anti-aliasing is that it does not require a lot of computing power. And also its capable of smoothing out alpha blended textures (aka Transparent textures). Its main drawback it's that it blurs the final image, so textures will look less sharp, and plus, they do not recover the missing pixel without using FXAA with MSAA simultaneously (or by downscaling). Regular Source Source (prior to CS:GO engine branch CS:GO engine branch, or in third-party engine branch such as Xengine Xengine) doesn't have support for it but as FXAA is a postprocessing effect, it can easily be implemented like with the Source shader editor or with ReShade.

Icon-Important.pngImportant:Using ReShade for multiplayer games and connecting to a VAC-secured server is not recommended.
Additionally, using ReShade on Counter-Strike: Global Offensive Counter-Strike: Global Offensive and Counter-Strike 2 Counter-Strike 2 requires -allow_third_party_software and -insecure command line options.

SMAA

Subpixel Morphological Anti-Aliasing (SMAA) works similarly to FXAA or MLAA (which is what SMAA was based off), but results in much better image quality than both FXAA and MLAA, while also taking little performance impact. There are currently no GoldSrc, Source or Source 2 games used this AA method, but users can add SMAA by using ReShade or Source Shader Editor.

TAA

Wikipedia icon Temporal Anti Aliasing (TAA) is a spatial anti-aliasing technique that combines information from past frames and the current frame to smooth the current frame. TAA, each pixel is sampled once per frame but in each frame the sample is at a different location within the pixel. Pixels sampled in past frames are blended with pixels sampled in the current frame to produce an anti-aliased image. While being cheaper to calculate then MSAA, its main drawback is that it can cause ghosting and blurriness to the image (Example here).

As of mid 2010s, it is the current gaming industry standard of anti-aliasing (alongside FXAA for weaker hardware) with many modern games started to use TAA as most modern games transitioned from forward rendering to deferred rendering (except Valve Valve games, which continued to use forward rendering, therefore, MSAA is still available as an option for anti-aliasing in Source 2 Source 2), allowing many lights to be rendered without significant performance hit.

The only Source engine game that supports TAA is Apex Legends Apex Legends.

CMAA

Wikipedia icon Conservative Morphological Anti Aliasing (CMAA) is an image based, post processing technique. CMAA uses 4 main steps to reduce aliasing:

  • Color break detection
  • Locally dominant edge detection
  • Simple shape handling
  • Symmetrical long edge shape handling.

CMAA is only supported in some Source 2 Source 2 games.

Note.pngNote:When Counter-Strike: Global Offensive Counter-Strike: Global Offensive got ported to Source 2 Source 2 (and renamed to Counter-Strike 2 Counter-Strike 2), (FXAA) support was removed and (CMAA) was implemented in its place, with the ability to use it alongside MSAA removed.

Media

GoldSrc

Blank image.pngTodo: Add screenshots.

Source

No Anti-aliasing
2x MSAA
4x MSAA
8x MSAA
FXAA through the Source shader editor
No Anti-aliasing (Click to enlarge)
2x MSAA (Click to enlarge)
4x MSAA (Click to enlarge)
8x MSAA (Click to enlarge)
FXAA through ReShade (Click to enlarge)
SMAA through ReShade (Click to enlarge)
SMAA through ReShade, in conjunction with 8x MSAA.
This will produce the best result without using downscaling methods (such as DSR), while at the cost of making the image look blurrier. (Click to enlarge)
Blank image.pngTodo: Add a TAA screenshot, also a MSAA 6x

Support

GoldSrc GoldSrc

Game FXAA MSAA TAA
Half-Life Half-Life
Half-Life: Opposing Force Half-Life: Opposing Force
Half-Life: Blue Shift Half-Life: Blue Shift
Counter-Strike Counter-Strike
Day of Defeat Day of Defeat
Ricochet Ricochet
Team Fortress Classic Team Fortress Classic
Deathmatch Classic Deathmatch Classic
Counter-Strike: Condition Zero Counter-Strike: Condition Zero
Condition Zero Deleted Scenes Condition Zero Deleted Scenes
No Yes (since 2013 engine update, 4X only) No
James Bond 007: Nightfire James Bond 007: Nightfire No Yes
(up to 8X)
No

Source Source

Game FXAA MSAA CSAA (Nvidia Nvidia) EQAA (Radeon AMD) TAA
Source 2004 Source 2004
Source 2006 Source 2006
Source 2007 Source 2007
Source 2009 Source 2009/Source Multiplayer Source Multiplayer
Source 2013 Source 2013
Half-Life: Source Half-Life: Source
Day of Defeat: Source Day of Defeat: Source
Half-Life 2 Half-Life 2
Half-Life 2: Episode One Half-Life 2: Episode One
Half-Life 2: Episode Two Half-Life 2: Episode Two
Alien Swarm Alien Swarm
Alien Swarm: Reactive Drop Alien Swarm: Reactive Drop
Alien Swarm Deferred Alien Swarm Deferred
Lambda Wars Lambda Wars
Source Filmmaker Source Filmmaker
Half-Life Deathmatch: Source Half-Life Deathmatch: Source
Half-Life 2: Deathmatch Half-Life 2: Deathmatch
Half-Life 2: Lost Coast Half-Life 2: Lost Coast
Counter-Strike: Source Counter-Strike: Source
Team Fortress 2 Team Fortress 2
Portal Portal
Left 4 Dead Left 4 Dead
Left 4 Dead 2 Left 4 Dead 2
Portal 2 Portal 2
Portal 2: Desolation Portal 2: Desolation[confirm]
No Yes No longer functional Unknown No
Black Mesa Black Mesa Yes Removed No No No
Counter-Strike: Global Offensive Counter-Strike: Global Offensive Yes Yes No No No
Strata Source Strata Source Yes Yes No No No
Titanfall Titanfall No Yes No longer functional Yes Yes (TXAA)
Titanfall 2 Titanfall 2 No Yes Unknown, possibly might work (see above) Yes Yes (TSSAA)
Apex Legends Apex Legends No No No No Yes (TSSAA)

Source 2 Source 2

Game FXAA MSAA TAA CMAA
Counter-Strike 2 Counter-Strike 2 No Yes No Yes
Half-Life: Alyx Half-Life: Alyx No Yes No No
S&box S&box No Yes No No
Dota 2 Dota 2 Yes No[confirm] No No

Console commands

Source 2013 Source 2013 games and older source engine games have two console commands dedicated to Anti-aliasing:

mat_antialias (0-8)
Goes from 0x to 8x MSAA.
Note.pngNote:This commands only accepts positive values as negative ones will do nothing. Also if you are using Source 2006 Source 2006 or newer, or by using newer GPUs with later drivers, 6x MSAA is not supported, so it will also do nothing!
mat_aaquality (0-4)
It was used to set CSAA antialiasing settings.
Warning.pngWarning:Ever since the release of Nvidia Nvidia's GTX 900 series cards (aswell as GTX 750, 750Ti and other Maxwell-based card) and newer, or with new drivers update, support for CSAA has been removed! So this commands will do nothing!

See also

External links