mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 09:01:46 +00:00
Added missing WGL pixel format error check.
This commit is contained in:
parent
f479b1920f
commit
20a4ecf175
@ -293,6 +293,12 @@ int _glfwCreateContext(_GLFWwindow* window,
|
||||
pfd.cAuxBuffers = fbconfig->auxBuffers;
|
||||
|
||||
pixelFormat = ChoosePixelFormat(window->wgl.dc, &pfd);
|
||||
if (!pixelFormat)
|
||||
{
|
||||
_glfwInputError(GLFW_PLATFORM_ERROR,
|
||||
"WGL: Failed to find a suitable pixel format");
|
||||
return GL_FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
if (!DescribePixelFormat(window->wgl.dc, pixelFormat, sizeof(pfd), &pfd))
|
||||
|
Loading…
Reference in New Issue
Block a user