comparison include/SDL_blendmode.h @ 5187:d976b67150c5

Restored SDL_BLENDMODE_MOD for MAME
author Sam Lantinga <slouken@libsdl.org>
date Fri, 04 Feb 2011 19:50:56 -0800
parents e743b9c3f6d6
children b530ef003506
comparison
equal deleted inserted replaced
5186:227d81a4b66c 5187:d976b67150c5
43 typedef enum 43 typedef enum
44 { 44 {
45 SDL_BLENDMODE_NONE = 0x00000000, /**< No blending */ 45 SDL_BLENDMODE_NONE = 0x00000000, /**< No blending */
46 SDL_BLENDMODE_BLEND = 0x00000001, /**< dst = (src * A) + (dst * (1-A)) */ 46 SDL_BLENDMODE_BLEND = 0x00000001, /**< dst = (src * A) + (dst * (1-A)) */
47 SDL_BLENDMODE_ADD = 0x00000002, /**< dst = (src * A) + dst */ 47 SDL_BLENDMODE_ADD = 0x00000002, /**< dst = (src * A) + dst */
48 SDL_BLENDMODE_MOD = 0x00000004 /**< dst = src * dst */
48 } SDL_BlendMode; 49 } SDL_BlendMode;
49 50
50 /* Ends C function definitions when using C++ */ 51 /* Ends C function definitions when using C++ */
51 #ifdef __cplusplus 52 #ifdef __cplusplus
52 /* *INDENT-OFF* */ 53 /* *INDENT-OFF* */