Commit c8b8cca4 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

XCB: move xcb_flush to more appropriate place

parent ea873dde
...@@ -327,7 +327,6 @@ static int Open (vlc_object_t *obj) ...@@ -327,7 +327,6 @@ static int Open (vlc_object_t *obj)
p_sys->gc = xcb_generate_id (p_sys->conn); p_sys->gc = xcb_generate_id (p_sys->conn);
xcb_create_gc (p_sys->conn, p_sys->gc, p_sys->window, 0, NULL); xcb_create_gc (p_sys->conn, p_sys->gc, p_sys->window, 0, NULL);
msg_Dbg (vout, "using X11 graphic context %08"PRIx32, p_sys->gc); msg_Dbg (vout, "using X11 graphic context %08"PRIx32, p_sys->gc);
xcb_flush (p_sys->conn);
/* Check shared memory support */ /* Check shared memory support */
p_sys->shm = var_CreateGetBool (vout, "x11-shm") > 0; p_sys->shm = var_CreateGetBool (vout, "x11-shm") > 0;
...@@ -552,7 +551,7 @@ static int Init (vout_thread_t *vout) ...@@ -552,7 +551,7 @@ static int Init (vout_thread_t *vout)
break; break;
PP_OUTPUTPICTURE[I_OUTPUTPICTURES++] = pic; PP_OUTPUTPICTURE[I_OUTPUTPICTURES++] = pic;
} }
xcb_flush (p_sys->conn);
return VLC_SUCCESS; return VLC_SUCCESS;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment