mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 21:14:35 +00:00
Formatting.
This commit is contained in:
parent
98c1c2fbf2
commit
6c449e6e8f
@ -467,7 +467,7 @@ static _GLFWwindow* findWindow(Window handle)
|
|||||||
|
|
||||||
|
|
||||||
//========================================================================
|
//========================================================================
|
||||||
// Get and process next X event (called by _glfwPlatformPollEvents)
|
// Process the specified X event
|
||||||
//========================================================================
|
//========================================================================
|
||||||
|
|
||||||
static void processEvent(XEvent *event)
|
static void processEvent(XEvent *event)
|
||||||
@ -1176,23 +1176,24 @@ void _glfwPlatformPollEvents(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//========================================================================
|
//========================================================================
|
||||||
// Wait for new window and input events
|
// Wait for new window and input events
|
||||||
//========================================================================
|
//========================================================================
|
||||||
|
|
||||||
void _glfwPlatformWaitEvents(void)
|
void _glfwPlatformWaitEvents(void)
|
||||||
{
|
{
|
||||||
fd_set set;
|
|
||||||
int fd;
|
int fd;
|
||||||
|
fd_set fds;
|
||||||
|
|
||||||
fd = ConnectionNumber(_glfwLibrary.X11.display);
|
fd = ConnectionNumber(_glfwLibrary.X11.display);
|
||||||
|
|
||||||
FD_ZERO(&set);
|
FD_ZERO(&fds);
|
||||||
FD_SET(fd, &set);
|
FD_SET(fd, &fds);
|
||||||
|
|
||||||
XFlush(_glfwLibrary.X11.display);
|
XFlush(_glfwLibrary.X11.display);
|
||||||
|
|
||||||
if(select(fd+1, &set, NULL, NULL, NULL) > 0)
|
if (select(fd + 1, &fds, NULL, NULL, NULL) > 0)
|
||||||
_glfwPlatformPollEvents();
|
_glfwPlatformPollEvents();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user