Update rlgl.h
This commit is contained in:
parent
05cdaf7d01
commit
1134024985
1 changed files with 6 additions and 4 deletions
10
src/rlgl.h
10
src/rlgl.h
|
@ -382,10 +382,12 @@ typedef unsigned char byte;
|
||||||
|
|
||||||
// Color blending modes (pre-defined)
|
// Color blending modes (pre-defined)
|
||||||
typedef enum {
|
typedef enum {
|
||||||
BLEND_ALPHA = 0,
|
BLEND_ALPHA = 0, // Blend textures considering alpha (default)
|
||||||
BLEND_ADDITIVE,
|
BLEND_ADDITIVE, // Blend textures adding colors
|
||||||
BLEND_MULTIPLIED,
|
BLEND_MULTIPLIED, // Blend textures multiplying colors
|
||||||
BLEND_ADD_COLORS
|
BLEND_ADD_COLORS, // Blend textures adding colors (alternative)
|
||||||
|
BLEND_SUBTRACT_COLORS, // Blend textures subtracting colors (alternative)
|
||||||
|
BLEND_CUSTOM // Belnd textures using custom src/dst factors (use SetBlendModeCustom())
|
||||||
} BlendMode;
|
} BlendMode;
|
||||||
|
|
||||||
// Shader location point type
|
// Shader location point type
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue