OpenGL3: ExtensionHandler::initExtensionsNew: use GetInteger

This commit is contained in:
numzero 2023-04-15 19:33:23 +03:00 committed by sfan5
parent efb660e7ed
commit 8cf02ea27f

View File

@ -29,8 +29,7 @@ namespace video
void COpenGL3ExtensionHandler::initExtensionsNew() void COpenGL3ExtensionHandler::initExtensionsNew()
{ {
GLint ext_count = 0; int ext_count = GetInteger(GL_NUM_EXTENSIONS);
GL.GetIntegerv(GL_NUM_EXTENSIONS, &ext_count);
for (int k = 0; k < ext_count; k++) for (int k = 0; k < ext_count; k++)
addExtension(reinterpret_cast<const char *>(GL.GetStringi(GL_EXTENSIONS, k))); addExtension(reinterpret_cast<const char *>(GL.GetStringi(GL_EXTENSIONS, k)));
} }