From 9763000cf2b3bc2e927a70af8d35e6f394db980f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Denis-Courmont?= Date: Thu, 20 Dec 2018 20:24:00 +0200 Subject: [PATCH] xcb/render: fix black color --- modules/video_output/xcb/render.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/video_output/xcb/render.c b/modules/video_output/xcb/render.c index 09bc84c8e4..a1e969acc5 100644 --- a/modules/video_output/xcb/render.c +++ b/modules/video_output/xcb/render.c @@ -133,7 +133,7 @@ static void Prepare(vout_display_t *vd, picture_t *pic, subpicture_t *subpic, 0, 0, fmt->i_visible_width, fmt->i_visible_height); /* Blank background */ - static const xcb_render_color_t black_color = { 0, 0, 0, 0 }; + static const xcb_render_color_t black_color = { 0, 0, 0, 0xffff }; xcb_rectangle_t rects[] = { { 0, 0, vd->cfg->display.width, vd->cfg->display.height }, }; -- GitLab