summaryrefslogtreecommitdiff
path: root/kmscube
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2016-04-19 22:31:06 +0300
committerTomi Valkeinen <tomi.valkeinen@ti.com>2016-04-19 22:31:06 +0300
commitaf6002115bba1e57253f36229e09498783d1ab33 (patch)
treec2530dadd5d24456f0cf6e2064c1d2a0361fc3d2 /kmscube
parent5c559cf5ac9dc5361df4d76b39fe875107e4fcda (diff)
kmscube: hacking
Diffstat (limited to 'kmscube')
-rw-r--r--kmscube/cube-x11.cpp34
1 files changed, 28 insertions, 6 deletions
diff --git a/kmscube/cube-x11.cpp b/kmscube/cube-x11.cpp
index 82ef414..795e8f5 100644
--- a/kmscube/cube-x11.cpp
+++ b/kmscube/cube-x11.cpp
@@ -15,6 +15,9 @@ void main_x11()
xcb_connection_t *c = XGetXCBConnection(dpy);
+ /* Acquire event queue ownership */
+ XSetEventQueueOwner(dpy, XCBOwnsEventQueue);
+
/* Get the first screen */
const xcb_setup_t *setup = xcb_get_setup (c);
xcb_screen_t *screen = xcb_setup_roots_iterator (setup).data;
@@ -32,9 +35,12 @@ void main_x11()
height = 600;
}
- const uint32_t xcb_window_attrib_mask = XCB_CW_EVENT_MASK;
+ const uint32_t xcb_window_attrib_mask = XCB_CW_OVERRIDE_REDIRECT | XCB_CW_EVENT_MASK;
const uint32_t xcb_window_attrib_list[] = {
- XCB_EVENT_MASK_EXPOSURE,
+ // OVERRIDE_REDIRECT
+ 0,
+ // EVENT_MASK
+ XCB_EVENT_MASK_EXPOSURE | XCB_EVENT_MASK_KEY_PRESS,
};
xcb_window_t window = xcb_generate_id (c);
@@ -50,7 +56,6 @@ void main_x11()
xcb_window_attrib_mask,
xcb_window_attrib_list);
-
#if 0 // Doesn't work
if (s_fullscreen) {
@@ -79,15 +84,32 @@ void main_x11()
surface.make_current();
surface.swap_buffers();
+ bool need_exit = false;
+
xcb_generic_event_t *event;
- while ( (event = xcb_poll_for_event (c)) ) {
+ while (!need_exit && (event = xcb_wait_for_event (c))) {
+ switch (event->response_type & ~0x80) {
+ case XCB_EXPOSE: {
+
+ break;
+ }
+ case XCB_KEY_PRESS: {
+ xcb_key_press_event_t *kp = (xcb_key_press_event_t *)event;
+ if (kp->detail == 24) {
+ printf("Exit due to keypress\n");
+ need_exit = true;
+ }
+
+ break;
+ }
+ }
free(event);
if (s_num_frames && framenum >= s_num_frames)
- break;
+ need_exit = true;
- surface.make_current();
+ // this should be in XCB_EXPOSE, but we don't get the event after swaps...
scene.draw(framenum++);
surface.swap_buffers();
}