This commit is contained in:
Camilla Löwy 2017-01-10 15:46:00 +01:00
parent 48a795c101
commit 221451b817
5 changed files with 11 additions and 11 deletions

View File

@ -147,7 +147,7 @@ static GLFWbool acquireMonitor(_GLFWwindow* window)
[window->ns.object setFrame:frame display:YES]; [window->ns.object setFrame:frame display:YES];
_glfwInputMonitorWindowChange(window->monitor, window); _glfwInputMonitorWindow(window->monitor, window);
return status; return status;
} }
@ -158,7 +158,7 @@ static void releaseMonitor(_GLFWwindow* window)
if (window->monitor->window != window) if (window->monitor->window != window)
return; return;
_glfwInputMonitorWindowChange(window->monitor, NULL); _glfwInputMonitorWindow(window->monitor, NULL);
_glfwRestoreVideoModeNS(window->monitor); _glfwRestoreVideoModeNS(window->monitor);
} }

View File

@ -949,11 +949,11 @@ void _glfwInputCursorEnter(_GLFWwindow* window, GLFWbool entered);
/*! @ingroup event /*! @ingroup event
*/ */
void _glfwInputMonitor(_GLFWmonitor* monitor, int action, int type); void _glfwInputMonitor(_GLFWmonitor* monitor, int action, int placement);
/*! @ingroup event /*! @ingroup event
*/ */
void _glfwInputMonitorWindowChange(_GLFWmonitor* monitor, _GLFWwindow* window); void _glfwInputMonitorWindow(_GLFWmonitor* monitor, _GLFWwindow* window);
/*! @brief Notifies shared code of an error. /*! @brief Notifies shared code of an error.
* @param[in] error The error code most suitable for the error. * @param[in] error The error code most suitable for the error.

View File

@ -86,7 +86,7 @@ static GLFWbool refreshVideoModes(_GLFWmonitor* monitor)
////// GLFW event API ////// ////// GLFW event API //////
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
void _glfwInputMonitor(_GLFWmonitor* monitor, int action, int type) void _glfwInputMonitor(_GLFWmonitor* monitor, int action, int placement)
{ {
if (action == GLFW_CONNECTED) if (action == GLFW_CONNECTED)
{ {
@ -94,7 +94,7 @@ void _glfwInputMonitor(_GLFWmonitor* monitor, int action, int type)
_glfw.monitors = _glfw.monitors =
realloc(_glfw.monitors, sizeof(_GLFWmonitor*) * _glfw.monitorCount); realloc(_glfw.monitors, sizeof(_GLFWmonitor*) * _glfw.monitorCount);
if (type == _GLFW_INSERT_FIRST) if (placement == _GLFW_INSERT_FIRST)
{ {
memmove(_glfw.monitors + 1, memmove(_glfw.monitors + 1,
_glfw.monitors, _glfw.monitors,
@ -128,7 +128,7 @@ void _glfwInputMonitor(_GLFWmonitor* monitor, int action, int type)
_glfwFreeMonitor(monitor); _glfwFreeMonitor(monitor);
} }
void _glfwInputMonitorWindowChange(_GLFWmonitor* monitor, _GLFWwindow* window) void _glfwInputMonitorWindow(_GLFWmonitor* monitor, _GLFWwindow* window)
{ {
monitor->window = window; monitor->window = window;
} }

View File

@ -427,7 +427,7 @@ static GLFWbool acquireMonitor(_GLFWwindow* window)
xpos, ypos, mode.width, mode.height, xpos, ypos, mode.width, mode.height,
SWP_NOACTIVATE | SWP_NOCOPYBITS); SWP_NOACTIVATE | SWP_NOCOPYBITS);
_glfwInputMonitorWindowChange(window->monitor, window); _glfwInputMonitorWindow(window->monitor, window);
return status; return status;
} }
@ -438,7 +438,7 @@ static void releaseMonitor(_GLFWwindow* window)
if (window->monitor->window != window) if (window->monitor->window != window)
return; return;
_glfwInputMonitorWindowChange(window->monitor, NULL); _glfwInputMonitorWindow(window->monitor, NULL);
_glfwRestoreVideoModeWin32(window->monitor); _glfwRestoreVideoModeWin32(window->monitor);
} }

View File

@ -838,7 +838,7 @@ static GLFWbool acquireMonitor(_GLFWwindow* window)
xpos, ypos, mode.width, mode.height); xpos, ypos, mode.width, mode.height);
} }
_glfwInputMonitorWindowChange(window->monitor, window); _glfwInputMonitorWindow(window->monitor, window);
return status; return status;
} }
@ -849,7 +849,7 @@ static void releaseMonitor(_GLFWwindow* window)
if (window->monitor->window != window) if (window->monitor->window != window)
return; return;
_glfwInputMonitorWindowChange(window->monitor, NULL); _glfwInputMonitorWindow(window->monitor, NULL);
_glfwRestoreVideoModeX11(window->monitor); _glfwRestoreVideoModeX11(window->monitor);
_glfw.x11.saver.count--; _glfw.x11.saver.count--;