diff options
| author | jdah <20308439+jdah@users.noreply.github.com> | 2025-02-07 11:38:40 +0100 |
|---|---|---|
| committer | jdah <20308439+jdah@users.noreply.github.com> | 2025-02-07 11:38:40 +0100 |
| commit | 00a36cf3e81dfd34e2213852bf833291c261958f (patch) | |
| tree | 4753c1f7ab97774fadf84e1e227c68598e1ffab5 | |
| parent | 7ac3c7ac2c8ffa704a5b972a097b9dfceb6f63de (diff) | |
added GL_MIN, GL_MAX constants
| -rw-r--r-- | sokol_gfx.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sokol_gfx.h b/sokol_gfx.h index 051d17ef..ce698a95 100644 --- a/sokol_gfx.h +++ b/sokol_gfx.h @@ -4959,6 +4959,8 @@ inline int sg_append_buffer(sg_buffer buf_id, const sg_range& data) { return sg_ #define GL_MINOR_VERSION 0x821C #define GL_TEXTURE_2D_MULTISAMPLE 0x9100 #define GL_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9102 + #define GL_MIN 0x8007 + #define GL_MAX 0x8008 #endif #ifndef GL_UNSIGNED_INT_2_10_10_10_REV |