notes for later.

SVN revision: 56305
This commit is contained in:
Carsten Haitzler 2011-01-26 09:56:54 +00:00
parent c472771a84
commit d51568d537
2 changed files with 4 additions and 2 deletions

View File

@ -201,6 +201,8 @@ evas_object_rectangle_render_pre(Evas_Object *obj)
/* if it just became visible or invisible */
is_v = evas_object_is_visible(obj);
was_v = evas_object_was_visible(obj);
/* POST 1.0 -> enable */
/* if (!(is_v | was_v)) goto done;*/
if (is_v != was_v)
{
evas_object_render_pre_visible_change(&obj->layer->evas->clip_changes, obj, is_v, was_v);

View File

@ -88,8 +88,8 @@ evas_event_passes_through(Evas_Object *obj)
static inline int
evas_object_is_visible(Evas_Object *obj)
{
if ((obj->cur.visible) &&
{ /* post 1.0 -> enable? */
if ((obj->cur.visible)/* && (obj->cur.color.a > 0)*/ &&
((obj->cur.cache.clip.visible) || (obj->smart.smart)) &&
((obj->cur.cache.clip.a > 0 && obj->cur.render_op == EVAS_RENDER_BLEND)
|| obj->cur.render_op != EVAS_RENDER_BLEND))