do not print all GL extensions to the log for the GLES renderer.

This commit is contained in:
Professor Hastig 2023-10-25 07:54:08 +02:00 committed by Christoph Oelckers
parent f3d44f8131
commit 731cad7553

View file

@ -158,7 +158,7 @@ namespace OpenGLESRenderer
Printf(PRINT_LOG, "GL_EXTENSIONS:\n");
for (unsigned i = 0; i < m_Extensions.Size(); i++)
{
Printf(" %s\n", m_Extensions[i].GetChars());
Printf(PRINT_LOG, " %s\n", m_Extensions[i].GetChars());
}
const char* glVersionStr = (const char*)glGetString(GL_VERSION);
double glVersion = strtod(glVersionStr, NULL);