diff options
| author | Ray <[email protected]> | 2022-10-05 13:57:38 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2022-10-05 13:57:38 +0200 |
| commit | 26969c2c38cfea301a570714a13ebd5fd6764708 (patch) | |
| tree | 4a301ea97ec9023b2c98688fd7d9c0c720f8ad62 /src/raylib.h | |
| parent | 25d846aa9aeb195ebe1128174ff30a7d5396ed32 (diff) | |
| download | raylib-26969c2c38cfea301a570714a13ebd5fd6764708.tar.gz raylib-26969c2c38cfea301a570714a13ebd5fd6764708.zip | |
Added `BLEND_CUSTOM_SEPARATE` #2741
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index 4f0483f1..3494adaa 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 |
