mirror of
https://github.com/glfw/glfw.git
synced 2024-11-11 04:53:50 +00:00
Removed reconfiguration callback.
The Core Graphics callback is called before the corresponding NSScreen object for a newly connected monitor is created, thus making monitor enumeration fail.
This commit is contained in:
parent
44e8401f7b
commit
4c69535d72
@ -71,13 +71,6 @@ static void changeToResourcesDirectory(void)
|
||||
|
||||
#endif /* _GLFW_USE_CHDIR */
|
||||
|
||||
static void reconfigurationCallback(CGDirectDisplayID displayID,
|
||||
CGDisplayChangeSummaryFlags flags,
|
||||
void* data)
|
||||
{
|
||||
_glfwInputMonitorChange();
|
||||
}
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
////// GLFW platform API //////
|
||||
@ -102,12 +95,6 @@ int _glfwPlatformInit(void)
|
||||
if (!_glfw.ns.eventSource)
|
||||
return GL_FALSE;
|
||||
|
||||
if (CGDisplayRegisterReconfigurationCallback(reconfigurationCallback,
|
||||
NULL) != kCGErrorSuccess)
|
||||
{
|
||||
return GL_FALSE;
|
||||
}
|
||||
|
||||
CGEventSourceSetLocalEventsSuppressionInterval(_glfw.ns.eventSource, 0.0);
|
||||
|
||||
return GL_TRUE;
|
||||
@ -115,8 +102,6 @@ int _glfwPlatformInit(void)
|
||||
|
||||
void _glfwPlatformTerminate(void)
|
||||
{
|
||||
CGDisplayRemoveReconfigurationCallback(reconfigurationCallback, NULL);
|
||||
|
||||
if (_glfw.ns.eventSource)
|
||||
{
|
||||
CFRelease(_glfw.ns.eventSource);
|
||||
|
Loading…
Reference in New Issue
Block a user