Cleanup
This commit is contained in:
parent
d5ab3e919a
commit
b41cd34143
@ -67,7 +67,7 @@ static int choosePixelFormat(_GLFWwindow* window,
|
||||
{
|
||||
_GLFWfbconfig* usableConfigs;
|
||||
const _GLFWfbconfig* closest;
|
||||
int i, pixelFormat, nativeCount, usableCount, attribCount;
|
||||
int i, pixelFormat, nativeCount, usableCount = 0, attribCount = 0;
|
||||
int attribs[40];
|
||||
int values[sizeof(attribs) / sizeof(attribs[0])];
|
||||
|
||||
@ -83,8 +83,6 @@ static int choosePixelFormat(_GLFWwindow* window,
|
||||
return 0;
|
||||
}
|
||||
|
||||
attribCount = 0;
|
||||
|
||||
addAttrib(WGL_SUPPORT_OPENGL_ARB);
|
||||
addAttrib(WGL_DRAW_TO_WINDOW_ARB);
|
||||
addAttrib(WGL_PIXEL_TYPE_ARB);
|
||||
@ -131,7 +129,6 @@ static int choosePixelFormat(_GLFWwindow* window,
|
||||
}
|
||||
|
||||
usableConfigs = calloc(nativeCount, sizeof(_GLFWfbconfig));
|
||||
usableCount = 0;
|
||||
|
||||
for (i = 0; i < nativeCount; i++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user