summaryrefslogtreecommitdiff
path: root/pugl/pugl_x11.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-09-12 19:45:02 -0400
committerDavid Robillard <d@drobilla.net>2015-09-12 19:45:02 -0400
commit809ead2220f5a9ed66f88b1ae84a93e334e2717f (patch)
tree64ef3ffc307e8d6b8847e2daf878e6e2997bb87d /pugl/pugl_x11.c
parent6b4a5a128ef5d87374dfef017cd20e069c068a4b (diff)
Add puglWaitForEvent for blocking main loops.
Diffstat (limited to 'pugl/pugl_x11.c')
-rw-r--r--pugl/pugl_x11.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/pugl/pugl_x11.c b/pugl/pugl_x11.c
index 6375609..32501da 100644
--- a/pugl/pugl_x11.c
+++ b/pugl/pugl_x11.c
@@ -494,6 +494,14 @@ puglGrabFocus(PuglView* view)
}
PuglStatus
+puglWaitForEvent(PuglView* view)
+{
+ XEvent xevent;
+ XPeekEvent(view->impl->display, &xevent);
+ return PUGL_SUCCESS;
+}
+
+PuglStatus
puglProcessEvents(PuglView* view)
{
XEvent xevent;
@@ -544,6 +552,7 @@ puglProcessEvents(PuglView* view)
if (view->ctx_type == PUGL_CAIRO) {
cairo_xlib_surface_set_size(
view->impl->surface, view->width, view->height);
+ view->redisplay = true;
}
#endif
}