diff options
author | David Robillard <d@drobilla.net> | 2015-09-12 19:45:02 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-09-12 19:45:02 -0400 |
commit | 809ead2220f5a9ed66f88b1ae84a93e334e2717f (patch) | |
tree | 64ef3ffc307e8d6b8847e2daf878e6e2997bb87d /pugl/pugl_x11.c | |
parent | 6b4a5a128ef5d87374dfef017cd20e069c068a4b (diff) | |
download | pugl-809ead2220f5a9ed66f88b1ae84a93e334e2717f.tar.gz pugl-809ead2220f5a9ed66f88b1ae84a93e334e2717f.tar.bz2 pugl-809ead2220f5a9ed66f88b1ae84a93e334e2717f.zip |
Add puglWaitForEvent for blocking main loops.
Diffstat (limited to 'pugl/pugl_x11.c')
-rw-r--r-- | pugl/pugl_x11.c | 9 |
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 } |