This commit is contained in:
Camilla Löwy 2019-01-23 23:43:15 +01:00
parent d5ab3e919a
commit b41cd34143

View File

@ -67,7 +67,7 @@ static int choosePixelFormat(_GLFWwindow* window,
{ {
_GLFWfbconfig* usableConfigs; _GLFWfbconfig* usableConfigs;
const _GLFWfbconfig* closest; const _GLFWfbconfig* closest;
int i, pixelFormat, nativeCount, usableCount, attribCount; int i, pixelFormat, nativeCount, usableCount = 0, attribCount = 0;
int attribs[40]; int attribs[40];
int values[sizeof(attribs) / sizeof(attribs[0])]; int values[sizeof(attribs) / sizeof(attribs[0])];
@ -83,8 +83,6 @@ static int choosePixelFormat(_GLFWwindow* window,
return 0; return 0;
} }
attribCount = 0;
addAttrib(WGL_SUPPORT_OPENGL_ARB); addAttrib(WGL_SUPPORT_OPENGL_ARB);
addAttrib(WGL_DRAW_TO_WINDOW_ARB); addAttrib(WGL_DRAW_TO_WINDOW_ARB);
addAttrib(WGL_PIXEL_TYPE_ARB); addAttrib(WGL_PIXEL_TYPE_ARB);
@ -131,7 +129,6 @@ static int choosePixelFormat(_GLFWwindow* window,
} }
usableConfigs = calloc(nativeCount, sizeof(_GLFWfbconfig)); usableConfigs = calloc(nativeCount, sizeof(_GLFWfbconfig));
usableCount = 0;
for (i = 0; i < nativeCount; i++) for (i = 0; i < nativeCount; i++)
{ {