Formatting.
This commit is contained in:
parent
a2dab25b06
commit
b711b2fc72
54
src/window.c
54
src/window.c
@ -100,39 +100,39 @@ void _glfwInputWindowFocus(_GLFWwindow* window, GLboolean activated)
|
|||||||
{
|
{
|
||||||
if (activated)
|
if (activated)
|
||||||
{
|
{
|
||||||
if (_glfwLibrary.activeWindow != window)
|
if (_glfwLibrary.activeWindow == window)
|
||||||
{
|
return;
|
||||||
_glfwLibrary.activeWindow = window;
|
|
||||||
|
|
||||||
if (_glfwLibrary.windowFocusCallback)
|
_glfwLibrary.activeWindow = window;
|
||||||
_glfwLibrary.windowFocusCallback(window, activated);
|
|
||||||
}
|
if (_glfwLibrary.windowFocusCallback)
|
||||||
|
_glfwLibrary.windowFocusCallback(window, activated);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (_glfwLibrary.activeWindow == window)
|
int i;
|
||||||
|
|
||||||
|
if (_glfwLibrary.activeWindow != window)
|
||||||
|
return;
|
||||||
|
|
||||||
|
// Release all pressed keyboard keys
|
||||||
|
for (i = 0; i <= GLFW_KEY_LAST; i++)
|
||||||
{
|
{
|
||||||
int i;
|
if (window->key[i] == GLFW_PRESS)
|
||||||
|
_glfwInputKey(window, i, GLFW_RELEASE);
|
||||||
// Release all pressed keyboard keys
|
|
||||||
for (i = 0; i <= GLFW_KEY_LAST; i++)
|
|
||||||
{
|
|
||||||
if (window->key[i] == GLFW_PRESS)
|
|
||||||
_glfwInputKey(window, i, GLFW_RELEASE);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Release all pressed mouse buttons
|
|
||||||
for (i = 0; i <= GLFW_MOUSE_BUTTON_LAST; i++)
|
|
||||||
{
|
|
||||||
if (window->mouseButton[i] == GLFW_PRESS)
|
|
||||||
_glfwInputMouseClick(window, i, GLFW_RELEASE);
|
|
||||||
}
|
|
||||||
|
|
||||||
_glfwLibrary.activeWindow = NULL;
|
|
||||||
|
|
||||||
if (_glfwLibrary.windowFocusCallback)
|
|
||||||
_glfwLibrary.windowFocusCallback(window, activated);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Release all pressed mouse buttons
|
||||||
|
for (i = 0; i <= GLFW_MOUSE_BUTTON_LAST; i++)
|
||||||
|
{
|
||||||
|
if (window->mouseButton[i] == GLFW_PRESS)
|
||||||
|
_glfwInputMouseClick(window, i, GLFW_RELEASE);
|
||||||
|
}
|
||||||
|
|
||||||
|
_glfwLibrary.activeWindow = NULL;
|
||||||
|
|
||||||
|
if (_glfwLibrary.windowFocusCallback)
|
||||||
|
_glfwLibrary.windowFocusCallback(window, activated);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user