From 70c8fe61d78c9612c9eafda50fc65addeaba6f22 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 15 Jul 2024 15:00:09 -0700 Subject: [PATCH] Align SDL_BLENDMODE_INVALID with the other constants --- include/SDL3/SDL_blendmode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL3/SDL_blendmode.h b/include/SDL3/SDL_blendmode.h index f5af3dd3f..76aa19732 100644 --- a/include/SDL3/SDL_blendmode.h +++ b/include/SDL3/SDL_blendmode.h @@ -58,7 +58,7 @@ typedef Uint32 SDL_BlendMode; #define SDL_BLENDMODE_ADD_PREMULTIPLIED 0x00000020u /**< pre-multiplied additive blending: dstRGB = srcRGB + dstRGB, dstA = dstA */ #define SDL_BLENDMODE_MOD 0x00000004u /**< color modulate: dstRGB = srcRGB * dstRGB, dstA = dstA */ #define SDL_BLENDMODE_MUL 0x00000008u /**< color multiply: dstRGB = (srcRGB * dstRGB) + (dstRGB * (1-srcA)), dstA = dstA */ -#define SDL_BLENDMODE_INVALID 0x7FFFFFFFu +#define SDL_BLENDMODE_INVALID 0x7FFFFFFFu /** * The blend operation used when combining source and destination pixel