diff options
| author | Marco Lizza <[email protected]> | 2019-01-20 22:22:21 +0100 |
|---|---|---|
| committer | Marco Lizza <[email protected]> | 2019-01-20 22:22:21 +0100 |
| commit | c1c801e5c37d4819d76b7ca905d90a05c8e11073 (patch) | |
| tree | 2f4bf3d0d8f6941522fb7e853cbba1b41e43ecbf /src/rlgl.h | |
| parent | 3703430f57a8c06ced45e314f6f71e4e98b046c8 (diff) | |
| download | raylib-c1c801e5c37d4819d76b7ca905d90a05c8e11073.tar.gz raylib-c1c801e5c37d4819d76b7ca905d90a05c8e11073.zip | |
Reworking log level as incremental.
Diffstat (limited to 'src/rlgl.h')
| -rw-r--r-- | src/rlgl.h | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -253,11 +253,14 @@ typedef unsigned char byte; // TraceLog message types typedef enum { - LOG_INFO = 0, - LOG_ERROR, - LOG_WARNING, + LOG_ALL, + LOG_TRACE, LOG_DEBUG, - LOG_OTHER + LOG_INFO, + LOG_WARN, + LOG_ERROR, + LOG_FATAL, + LOG_NONE } TraceLogType; // Texture formats (support depends on OpenGL version) |
