mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 05:17:52 +00:00
Merge pull request #864 from linkmauve/gl-info
Log the GL driver’s vendor and renderer
This commit is contained in:
commit
a5a6306f59
1 changed files with 2 additions and 0 deletions
|
@ -376,6 +376,8 @@ void RendererOpenGL::Init() {
|
|||
}
|
||||
|
||||
LOG_INFO(Render_OpenGL, "GL_VERSION: %s", glGetString(GL_VERSION));
|
||||
LOG_INFO(Render_OpenGL, "GL_VENDOR: %s", glGetString(GL_VENDOR));
|
||||
LOG_INFO(Render_OpenGL, "GL_RENDERER: %s", glGetString(GL_RENDERER));
|
||||
InitOpenGLObjects();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue