mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 02:19:58 +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_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();
|
InitOpenGLObjects();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue