- only print GL extensions to the log, but not to the console.

The list has become so long by now that it's more of a distraction than help. Besides, searching on-screen for specific extensions is futile anyway.
This commit is contained in:
Christoph Oelckers 2017-01-05 12:01:00 +01:00
parent c87836c3f3
commit fcb1c1edc4
1 changed files with 2 additions and 2 deletions

View File

@ -294,10 +294,10 @@ void gl_PrintStartupLog()
Printf ("GL_RENDERER: %s\n", glGetString(GL_RENDERER));
Printf ("GL_VERSION: %s (%s profile)\n", glGetString(GL_VERSION), (v & GL_CONTEXT_CORE_PROFILE_BIT)? "Core" : "Compatibility");
Printf ("GL_SHADING_LANGUAGE_VERSION: %s\n", glGetString(GL_SHADING_LANGUAGE_VERSION));
Printf ("GL_EXTENSIONS:");
Printf (PRINT_LOG, "GL_EXTENSIONS:");
for (unsigned i = 0; i < m_Extensions.Size(); i++)
{
Printf(" %s", m_Extensions[i].GetChars());
Printf(PRINT_LOG, " %s", m_Extensions[i].GetChars());
}
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &v);