Render deleted objects as long as they still have a pixmap

In wayland we can be presented with a new frame before being deleted.  If
we've never displayed that frame we should (since we released all pointers
to the old frame when we got the new one)
This commit is contained in:
Derek Foreman 2016-03-04 15:08:07 -06:00 committed by Mike Blumenkrantz
parent 4e1d7e3854
commit 4ba7648c41
1 changed files with 1 additions and 1 deletions

View File

@ -863,7 +863,7 @@ _e_comp_object_pixels_get(void *data, Evas_Object *obj EINA_UNUSED)
int pw, ph;
int bx, by, bxx, byy;
if (e_object_is_del(E_OBJECT(ec))) return;
if (!ec->pixmap) return;
if (!e_pixmap_size_get(ec->pixmap, &pw, &ph)) return;
//INF("PIXEL GET %p: %dx%d || %dx%d", ec, ec->w, ec->h, pw, ph);
e_pixmap_image_opaque_get(cw->ec->pixmap, &bx, &by, &bxx, &byy);