RENAMED: BLEND_ALPHA_PREMUL to BLEND_ALPHA_PREMULTIPLY

This commit is contained in:
Ray 2022-06-07 18:46:14 +02:00
parent fc86b5c1b4
commit dca23cb3ff
2 changed files with 3 additions and 3 deletions

View file

@ -843,7 +843,7 @@ typedef enum {
BLEND_MULTIPLIED, // Blend textures multiplying colors
BLEND_ADD_COLORS, // Blend textures adding colors (alternative)
BLEND_SUBTRACT_COLORS, // Blend textures subtracting colors (alternative)
BLEND_ALPHA_PREMUL, // Blend premultiplied textures considering alpha
BLEND_ALPHA_PREMULTIPLY, // Blend premultiplied textures considering alpha
BLEND_CUSTOM // Blend textures using custom src/dst factors (use rlSetBlendMode())
} BlendMode;