Revert "Don't sleep in the event thread"
This commit is contained in:
parent
a9a6270982
commit
30fef298bb
|
@ -57,6 +57,8 @@ void cX11Window::XEventThread()
|
|||
while (win)
|
||||
{
|
||||
XEvent event;
|
||||
for (int num_events = XPending(dpy); num_events > 0; num_events--)
|
||||
{
|
||||
XNextEvent(dpy, &event);
|
||||
switch (event.type)
|
||||
{
|
||||
|
@ -68,4 +70,6 @@ void cX11Window::XEventThread()
|
|||
break;
|
||||
}
|
||||
}
|
||||
Common::SleepCurrentThread(20);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -199,6 +199,8 @@ class PlatformX11 : public Platform
|
|||
{
|
||||
XEvent event;
|
||||
KeySym key;
|
||||
for (int num_events = XPending(dpy); num_events > 0; num_events--)
|
||||
{
|
||||
XNextEvent(dpy, &event);
|
||||
switch (event.type)
|
||||
{
|
||||
|
@ -263,6 +265,7 @@ class PlatformX11 : public Platform
|
|||
running = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!fullscreen)
|
||||
{
|
||||
Window winDummy;
|
||||
|
@ -274,6 +277,7 @@ class PlatformX11 : public Platform
|
|||
(unsigned int *)&SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowHeight,
|
||||
&borderDummy, &depthDummy);
|
||||
}
|
||||
usleep(100000);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue