diff options
| author | raysan5 <[email protected]> | 2020-03-27 18:45:37 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-03-27 18:45:37 +0100 |
| commit | d7b15ac1cfd5411510dc98f389bb6cc25060f1d0 (patch) | |
| tree | e3cdf04abf9aec11c36911e47ef37939b622cce3 /src | |
| parent | c0c775e45dd2476d4662b35ee88ca88a7cc84fa5 (diff) | |
| download | raylib-d7b15ac1cfd5411510dc98f389bb6cc25060f1d0.tar.gz raylib-d7b15ac1cfd5411510dc98f389bb6cc25060f1d0.zip | |
Review TRACELOG() categories
Diffstat (limited to 'src')
| -rw-r--r-- | src/rlgl.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1493,7 +1493,7 @@ void rlglInit(int width, int height) // Check OpenGL information and capabilities //------------------------------------------------------------------------------ // Print current OpenGL and GLSL version - TRACELOG(LOG_INFO, "GPU: OpenGL device information:"); + TRACELOG(LOG_INFO, "GL: OpenGL device information:"); TRACELOG(LOG_INFO, " > Vendor: %s", glGetString(GL_VENDOR)); TRACELOG(LOG_INFO, " > Renderer: %s", glGetString(GL_RENDERER)); TRACELOG(LOG_INFO, " > Version: %s", glGetString(GL_VERSION)); @@ -1746,7 +1746,7 @@ void rlglInit(int width, int height) RLGL.State.shapesTexture = GetTextureDefault(); RLGL.State.shapesTextureRec = (Rectangle){ 0.0f, 0.0f, 1.0f, 1.0f }; - TRACELOG(LOG_INFO, "GL: Default state initialized successfully"); + TRACELOG(LOG_INFO, "RLGL: Default state initialized successfully"); } // Vertex Buffer Object deinitialization (memory free) |
