mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 21:14:35 +00:00
Formatting.
This commit is contained in:
parent
dd941f5ae8
commit
d0afa65813
@ -1084,19 +1084,17 @@ void _glfwPlatformRefreshWindowParams(_GLFWwindow* window)
|
||||
|
||||
void _glfwPlatformPollEvents(void)
|
||||
{
|
||||
NSEvent* event;
|
||||
|
||||
do
|
||||
for (;;)
|
||||
{
|
||||
event = [NSApp nextEventMatchingMask:NSAnyEventMask
|
||||
NSEvent* event = [NSApp nextEventMatchingMask:NSAnyEventMask
|
||||
untilDate:[NSDate distantPast]
|
||||
inMode:NSDefaultRunLoopMode
|
||||
dequeue:YES];
|
||||
if (event == nil)
|
||||
break;
|
||||
|
||||
if (event)
|
||||
[NSApp sendEvent:event];
|
||||
}
|
||||
while (event);
|
||||
|
||||
[_glfwLibrary.NS.autoreleasePool drain];
|
||||
_glfwLibrary.NS.autoreleasePool = [[NSAutoreleasePool alloc] init];
|
||||
|
Loading…
Reference in New Issue
Block a user