vulkan/xcb: flush after mapping the window

Otherwise the map may not reach the server and not appear.
This commit is contained in:
Matthew Waters 2016-01-22 14:34:06 +11:00
parent 28ad97059d
commit 700eb16af8

View file

@ -132,6 +132,7 @@ gst_vulkan_window_xcb_show (GstVulkanWindow * window)
if (!window_xcb->visible) {
xcb_map_window (connection, window_xcb->win_id);
xcb_flush (connection);
window_xcb->visible = TRUE;
}
}