<<< Blending | Index | Most Common Blend Method >>> |
We must specify how the blending occurs between
Destination color is the color already in the color buffer
Source color is the one we're about to write into the color buffer
Cf = ( Cs * S ) + ( Cd * D )
where
Cf is the final color
Cs is the source color
Cd is the destination color
S is the source blending factor
D is the destination blending factor
<<< Blending | Index | Most Common Blend Method >>> |