Function
gDPSetKeyR, gsDPSetKeyR, gDPSetKeyGB, gsDPSetKeyGB
Selects the color for chroma key operation.
Syntax
#include "gbi.h" gDPSetKeyR(Gfx *gdl, cR, sR, wR) gsDPSetKeyR( cR, sR, wR) gDPSetKeyGB(Gfx *gdl, cG, sG, wG, cB, sB, wB) gsDPSetKeyGB( cG, sG, wG, cB, sB, wB)
Arguments
Description
This macro selects the color for chroma key operation.
Conceptually, the equation used for keying is:
key = clamp(0.0, -abs((X - center) * scale) + width, 1.0)
The alpha key is the minimum of KeyR, KeyG, KeyB
Note
The red, green, and blue chroma key information is split into two separate macros simply because they do not all fit in one.
See Also