Browse Source

Review TRACELOG() categories

pull/1156/head
raysan5 5 years ago
parent
commit
d7b15ac1cf
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/rlgl.h

+ 2
- 2
src/rlgl.h View File

@ -1493,7 +1493,7 @@ void rlglInit(int width, int height)
// Check OpenGL information and capabilities // Check OpenGL information and capabilities
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// Print current OpenGL and GLSL version // 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, " > Vendor: %s", glGetString(GL_VENDOR));
TRACELOG(LOG_INFO, " > Renderer: %s", glGetString(GL_RENDERER)); TRACELOG(LOG_INFO, " > Renderer: %s", glGetString(GL_RENDERER));
TRACELOG(LOG_INFO, " > Version: %s", glGetString(GL_VERSION)); TRACELOG(LOG_INFO, " > Version: %s", glGetString(GL_VERSION));
@ -1746,7 +1746,7 @@ void rlglInit(int width, int height)
RLGL.State.shapesTexture = GetTextureDefault(); RLGL.State.shapesTexture = GetTextureDefault();
RLGL.State.shapesTextureRec = (Rectangle){ 0.0f, 0.0f, 1.0f, 1.0f }; 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) // Vertex Buffer Object deinitialization (memory free)

Loading…
Cancel
Save