From 8c6f07d1968f53093c476aeb2a87a79b7c239d31 Mon Sep 17 00:00:00 2001 From: Boram Park Date: Thu, 23 Mar 2017 15:57:41 +0900 Subject: [PATCH] e_pixmap: set format 0 to video buffer. When gl is disable, the pixmap which has video buffer couldn't be refreshed. Then video buffer couldn't be displayed on screen. Change-Id: Ia7076a93af3056fce492a67be64574cbc128df30 --- src/bin/e_pixmap.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/e_pixmap.c b/src/bin/e_pixmap.c index 8312874..1c312c0 100644 --- a/src/bin/e_pixmap.c +++ b/src/bin/e_pixmap.c @@ -465,6 +465,8 @@ e_pixmap_refresh(E_Pixmap *cp) &format); else if (buffer->tbm_surface) format = tbm_surface_get_format(buffer->tbm_surface); + else if (buffer->type == E_COMP_WL_BUFFER_TYPE_VIDEO) + format = 0; else return EINA_FALSE; -- 2.7.4