From 26969c2c38cfea301a570714a13ebd5fd6764708 Mon Sep 17 00:00:00 2001 From: Ray Date: Wed, 5 Oct 2022 13:57:38 +0200 Subject: [PATCH] Added `BLEND_CUSTOM_SEPARATE` #2741 --- src/raylib.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/raylib.h b/src/raylib.h index 4f0483f15..3494adaa9 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -857,7 +857,8 @@ typedef enum { BLEND_ADD_COLORS, // Blend textures adding colors (alternative) BLEND_SUBTRACT_COLORS, // Blend textures subtracting colors (alternative) BLEND_ALPHA_PREMULTIPLY, // Blend premultiplied textures considering alpha - BLEND_CUSTOM // Blend textures using custom src/dst factors (use rlSetBlendMode()) + BLEND_CUSTOM, // Blend textures using custom src/dst factors (use rlSetBlendMode()) + BLEND_CUSTOM_SEPARATE // Blend textures using custom rgb/alpha separate src/dst factors (use rlSetBlendModeSeparate()) } BlendMode; // Gesture