mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 00:51:47 +00:00
Tightened scope of some local variables.
This commit is contained in:
parent
ee3304c09a
commit
1bad573c10
@ -589,8 +589,6 @@ GLFWAPI int glfwExtensionSupported(const char* extension)
|
||||
{
|
||||
const GLubyte* extensions;
|
||||
_GLFWwindow* window;
|
||||
GLint count;
|
||||
int i;
|
||||
|
||||
if (!_glfwInitialized)
|
||||
{
|
||||
@ -624,6 +622,9 @@ GLFWAPI int glfwExtensionSupported(const char* extension)
|
||||
}
|
||||
else
|
||||
{
|
||||
int i;
|
||||
GLint count;
|
||||
|
||||
// Check if extension is in the modern OpenGL extensions string list
|
||||
|
||||
glGetIntegerv(GL_NUM_EXTENSIONS, &count);
|
||||
|
Loading…
Reference in New Issue
Block a user