Mercurial > sdl-ios-xcode
diff src/video/SDL_blit.h @ 5143:e743b9c3f6d6
Making the API simpler, the blend modes are "none, blend, add" and are supported by all renderers.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 31 Jan 2011 23:23:57 -0800 |
parents | 1bceff8f008f |
children | d72793305335 |
line wrap: on
line diff
--- a/src/video/SDL_blit.h Mon Jan 31 22:53:45 2011 -0800 +++ b/src/video/SDL_blit.h Mon Jan 31 23:23:57 2011 -0800 @@ -52,10 +52,8 @@ /* SDL blit copy flags */ #define SDL_COPY_MODULATE_COLOR 0x00000001 #define SDL_COPY_MODULATE_ALPHA 0x00000002 -#define SDL_COPY_MASK 0x00000010 -#define SDL_COPY_BLEND 0x00000020 -#define SDL_COPY_ADD 0x00000040 -#define SDL_COPY_MOD 0x00000080 +#define SDL_COPY_BLEND 0x00000010 +#define SDL_COPY_ADD 0x00000020 #define SDL_COPY_COLORKEY 0x00000100 #define SDL_COPY_NEAREST 0x00000200 #define SDL_COPY_RLE_DESIRED 0x00001000