Anonymous edits have been disabled on the wiki. If you want to contribute please login or create an account.


Warning for game developers: PCGamingWiki staff members will only ever reach out to you using the official press@pcgamingwiki.com mail address.
Be aware of scammers claiming to be representatives or affiliates of PCGamingWiki who promise a PCGW page for a game key.

Difference between revisions of "Glossary:Anti-aliasing (AA)"

From PCGamingWiki, the wiki about fixing PC games
m
m (moved stub template)
Line 1: Line 1:
 +
{{stub}}
 +
 
==General==
 
==General==
 
Anti-aliasing (AA) is a computer graphics technique that attempts to minimise the unwanted "staircase" or "jaggy" effects which occur due to the limited resolution in 3D-Renderers. They also increase the texture quality in some cases.
 
Anti-aliasing (AA) is a computer graphics technique that attempts to minimise the unwanted "staircase" or "jaggy" effects which occur due to the limited resolution in 3D-Renderers. They also increase the texture quality in some cases.
Line 28: Line 30:
 
[[Category:Guide]]
 
[[Category:Guide]]
 
[[Category:Graphics]]
 
[[Category:Graphics]]
 
{{stub}}
 

Revision as of 21:38, 18 April 2012

This page is a stub: it lacks content and/or basic article components. You can help to expand this page by adding an image or additional information.

General

Anti-aliasing (AA) is a computer graphics technique that attempts to minimise the unwanted "staircase" or "jaggy" effects which occur due to the limited resolution in 3D-Renderers. They also increase the texture quality in some cases.

There are a number of anti-aliasing techniques today but all of them are based on the same principle. They simply render multiple pixels per pixel of the final image.

The techniques only differ on two factors:

  • How they determine which pixels are aliased.
  • How they "mix" the multiple rendered pixels to get the final pixel.

These algorithms are also variable on how many pixels they use to determine one final pixel. In video games this is represent by a simple number which is a power of 2 like 2x, 4x, 8x etcetera.

Comparison

No anti-aliasing 16x anti-aliasing
Not antialiased Cube.png Antialiased Cube.png

In video games

Anti-aliasing improves the general graphics quality but lowers the frame rate quite significantly. Lowering or disabling the anti-aliasing effect is a good way to improve the overall frame-rate.

An anti-aliasing setting is present in most PC games. If its not available in a specific title, it is usually possible to force it via the graphics card driver or a mod/hack.

External links

Anti-aliasing article on Wikipedia