ソースを参照

Update rlgl.h

pull/1363/head
raysan5 4年前
コミット
1134024985
1個のファイルの変更6行の追加4行の削除
  1. +6
    -4
      src/rlgl.h

+ 6
- 4
src/rlgl.h ファイルの表示

@ -382,10 +382,12 @@ typedef unsigned char byte;
// Color blending modes (pre-defined)
typedef enum {
BLEND_ALPHA = 0,
BLEND_ADDITIVE,
BLEND_MULTIPLIED,
BLEND_ADD_COLORS
BLEND_ALPHA = 0, // Blend textures considering alpha (default)
BLEND_ADDITIVE, // Blend textures adding colors
BLEND_MULTIPLIED, // Blend textures multiplying 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;
// Shader location point type

読み込み中…
キャンセル
保存