force comp render on dirty for hidden objects with visible mirrors

This commit is contained in:
Mike Blumenkrantz 2014-03-05 09:53:14 -05:00
parent 8b4162d681
commit 851ef43c41
1 changed files with 18 additions and 4 deletions

View File

@ -3083,11 +3083,12 @@ e_comp_object_dirty(Evas_Object *obj)
Eina_List *l; Eina_List *l;
Evas_Object *o; Evas_Object *o;
int w, h, ow, oh; int w, h, ow, oh;
Eina_Bool dirty; Eina_Bool dirty, visible;
API_ENTRY; API_ENTRY;
evas_object_geometry_get(cw->obj, NULL, NULL, &ow, &oh); evas_object_geometry_get(cw->obj, NULL, NULL, &ow, &oh);
dirty = e_pixmap_size_get(cw->ec->pixmap, &w, &h); dirty = e_pixmap_size_get(cw->ec->pixmap, &w, &h);
visible = cw->visible;
if (!dirty) w = h = 1; if (!dirty) w = h = 1;
evas_object_image_pixels_dirty_set(cw->obj, dirty); evas_object_image_pixels_dirty_set(cw->obj, dirty);
if (!dirty) if (!dirty)
@ -3115,7 +3116,10 @@ e_comp_object_dirty(Evas_Object *obj)
RENDER_DEBUG("UPDATE ADD [%p]: %d %d %dx%d", cw->ec, r->x, r->y, r->w, r->h); RENDER_DEBUG("UPDATE ADD [%p]: %d %d %dx%d", cw->ec, r->x, r->y, r->w, r->h);
evas_object_image_data_update_add(cw->obj, r->x, r->y, r->w, r->h); evas_object_image_data_update_add(cw->obj, r->x, r->y, r->w, r->h);
EINA_LIST_FOREACH(cw->obj_mirror, l, o) EINA_LIST_FOREACH(cw->obj_mirror, l, o)
evas_object_image_data_update_add(o, r->x, r->y, r->w, r->h); {
evas_object_image_data_update_add(o, r->x, r->y, r->w, r->h);
visible |= evas_object_visible_get(o);
}
if (cw->pending_updates) if (cw->pending_updates)
eina_tiler_rect_add(cw->pending_updates, r); eina_tiler_rect_add(cw->pending_updates, r);
} }
@ -3129,6 +3133,8 @@ e_comp_object_dirty(Evas_Object *obj)
eina_tiler_tile_size_set(cw->updates, 1, 1); eina_tiler_tile_size_set(cw->updates, 1, 1);
} }
cw->update_count = cw->updates_full = cw->updates_exist = 0; cw->update_count = cw->updates_full = cw->updates_exist = 0;
if (cw->visible || (!visible) || (!cw->pending_updates)) return;
e_comp_object_render(obj);
} }
EAPI Eina_Bool EAPI Eina_Bool
@ -3160,6 +3166,8 @@ e_comp_object_render(Evas_Object *obj)
return EINA_FALSE; return EINA_FALSE;
} }
evas_object_image_pixels_dirty_set(cw->obj, EINA_FALSE);
RENDER_DEBUG("RENDER SIZE: %dx%d", pw, ph); RENDER_DEBUG("RENDER SIZE: %dx%d", pw, ph);
it = eina_tiler_iterator_new(cw->pending_updates); it = eina_tiler_iterator_new(cw->pending_updates);
if (e_pixmap_image_is_argb(cw->ec->pixmap)) if (e_pixmap_image_is_argb(cw->ec->pixmap))
@ -3179,7 +3187,10 @@ e_comp_object_render(Evas_Object *obj)
} }
evas_object_image_data_set(cw->obj, pix); evas_object_image_data_set(cw->obj, pix);
EINA_LIST_FOREACH(cw->obj_mirror, l, o) EINA_LIST_FOREACH(cw->obj_mirror, l, o)
evas_object_image_data_set(o, pix); {
evas_object_image_data_set(o, pix);
evas_object_image_pixels_dirty_set(o, EINA_FALSE);
}
eina_iterator_free(it); eina_iterator_free(it);
E_FREE_FUNC(cw->pending_updates, eina_tiler_free); E_FREE_FUNC(cw->pending_updates, eina_tiler_free);
return ret; return ret;
@ -3203,7 +3214,10 @@ e_comp_object_render(Evas_Object *obj)
} }
evas_object_image_data_set(cw->obj, pix); evas_object_image_data_set(cw->obj, pix);
EINA_LIST_FOREACH(cw->obj_mirror, l, o) EINA_LIST_FOREACH(cw->obj_mirror, l, o)
evas_object_image_data_set(o, pix); {
evas_object_image_data_set(o, pix);
evas_object_image_pixels_dirty_set(o, EINA_FALSE);
}
eina_iterator_free(it); eina_iterator_free(it);
E_FREE_FUNC(cw->pending_updates, eina_tiler_free); E_FREE_FUNC(cw->pending_updates, eina_tiler_free);