Browse Source

Add GL_MIN GL_MAX blending equations (#2945)

pull/2975/head
Antonis Geralis 1 year ago
committed by GitHub
parent
commit
394b31faff
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/rlgl.h

+ 2
- 0
src/rlgl.h View File

@ -298,6 +298,8 @@
// GL blending functions/equations // GL blending functions/equations
#define RL_FUNC_ADD 0x8006 // GL_FUNC_ADD #define RL_FUNC_ADD 0x8006 // GL_FUNC_ADD
#define RL_MIN 0x8007 // GL_MIN
#define RL_MAX 0x8008 // GL_MAX
#define RL_FUNC_SUBTRACT 0x800A // GL_FUNC_SUBTRACT #define RL_FUNC_SUBTRACT 0x800A // GL_FUNC_SUBTRACT
#define RL_FUNC_REVERSE_SUBTRACT 0x800B // GL_FUNC_REVERSE_SUBTRACT #define RL_FUNC_REVERSE_SUBTRACT 0x800B // GL_FUNC_REVERSE_SUBTRACT
#define RL_BLEND_EQUATION 0x8009 // GL_BLEND_EQUATION #define RL_BLEND_EQUATION 0x8009 // GL_BLEND_EQUATION

Loading…
Cancel
Save