Premultiplied alpha: Difference between revisions

From vegard.wiki
Jump to navigation Jump to search
Content added Content deleted
(new page)
 
No edit summary
Line 8: Line 8:


* multiply RGB values by the alpha component when loading textures
* multiply RGB values by the alpha component when loading textures
* use <tt>glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA)</tt>
* use <code>glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA)</code>


This allows texture filtering to combine the RGB and alpha components separately and produce accurate blending results.
This allows texture filtering to combine the RGB and alpha components separately and produce accurate blending results.

Revision as of 08:52, 19 December 2019

Problem

When blending a partially transparent image on top of a background image you can get artifacts in areas which are not fully transparent and not fully opaque. The problem stems from the use of texture filtering, which will interpolate values from nearby pixels without taking transparency into account.

Solution

Use premultiplied alpha; usually this means:

  • multiply RGB values by the alpha component when loading textures
  • use glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA)

This allows texture filtering to combine the RGB and alpha components separately and produce accurate blending results.

See also