mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-03-21 18:31:10 +00:00
do not print all GL extensions to the log for the GLES renderer.
This commit is contained in:
parent
f3d44f8131
commit
731cad7553
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue