Simplify SDL_BLENDMODE_MUL

This commit is contained in:
Sylvain 2023-03-16 09:46:44 +01:00 committed by Sylvain Becker
parent bd70ce7f94
commit 7d26ba754a
4 changed files with 2 additions and 13 deletions

View file

@ -52,7 +52,7 @@ typedef enum
dstA = dstA */
SDL_BLENDMODE_MUL = 0x00000008, /**< color multiply
dstRGB = (srcRGB * dstRGB) + (dstRGB * (1-srcA))
dstA = (srcA * dstA) + (dstA * (1-srcA)) */
dstA = dstA */
SDL_BLENDMODE_INVALID = 0x7FFFFFFF
/* Additional custom blend modes can be returned by SDL_ComposeCustomBlendMode() */