diff options
| author | warzes <[email protected]> | 2021-10-19 20:43:27 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-10-19 12:43:27 +0200 |
| commit | 9f2ff3e4d6698e675f63d915e72350ee6912477c (patch) | |
| tree | 1445fd054b61c704b2359c1babd5cdad5577ee60 /src/config.h | |
| parent | 963021d39388ccd85bffabf16b3c1129ec7b038d (diff) | |
| download | raylib-9f2ff3e4d6698e675f63d915e72350ee6912477c.tar.gz raylib-9f2ff3e4d6698e675f63d915e72350ee6912477c.zip | |
Support create OpenGL debug context in OpenGL 4.3 (#2068)
* - support create OpenGL debug context in OpenGL 4.3
* - additional events in debug message
- fixed glEnable(GL_DEBUG_OUTPUT)
* Reviewed OpenGL Debug Context
Diffstat (limited to 'src/config.h')
| -rw-r--r-- | src/config.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h index 931fdf5b..5cb50903 100644 --- a/src/config.h +++ b/src/config.h @@ -84,6 +84,10 @@ //------------------------------------------------------------------------------------ // Module: rlgl - Configuration values //------------------------------------------------------------------------------------ + +// Enable OpenGL Debug Context (only OpenGL 4.3) +//#define RLGL_ENABLE_OPENGL_DEBUG_CONTEXT 1 + // Show OpenGL extensions and capabilities detailed logs on init //#define RLGL_SHOW_GL_DETAILS_INFO 1 |
