Wiki Page Content

Differences between revisions 11 and 12
Revision 11 as of 2011-02-15 00:38:49
Size: 1002
Editor: SheenaSmith
Comment: update content - 2/14 changeset 5295 (as of 5140, from blendmode.h)
Revision 12 as of 2011-02-24 19:11:20
Size: 816
Editor: SheenaSmith
Comment: update page - 2/3 changeset 5163 (2/23 5391); camelcase pragma change
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
#pragma disable-camelcase #pragma camelcase off
Line 26: Line 26:
 .[[SDL_BlendFillRect]]
 .[[SDL_BlendFillRects]]
 .[[SDL_BlendLine]]
 .[[SDL_BlendLines]]
 .[[SDL_BlendPoint]]
 .[[SDL_BlendPoints]]
 .[[SDL_BlendRect]]
 .[[SDL_BlendRects]]

SDL_BlendMode

An enumeration of blend modes used in SDL_RenderCopy() and drawing operations.

Values

SDL_BLENDMODE_NONE

no blending

SDL_BLENDMODE_BLEND

dst = (src * A) + (dst * (1-A))

SDL_BLENDMODE_ADD

dst = (src * A) + dst

Code Examples

You can add your code example here

Remarks

You can add useful comments here


CategoryEnum, CategoryVideo

None: SDL_BlendMode (last edited 2013-08-08 20:57:51 by Sam Lantinga)

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit