Evas: In the render stage, check obj->is_frame directly. No need for
authorChristopher Michael <cpmichael1@comcast.net>
Mon, 3 Sep 2012 08:50:40 +0000 (08:50 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Mon, 3 Sep 2012 08:50:40 +0000 (08:50 +0000)
another function call here. We have to object already available, just
check the property directly.

SVN revision: 75980

legacy/evas/src/lib/canvas/evas_render.c

index f9546cf..89de64e 100644 (file)
@@ -1385,8 +1385,7 @@ evas_render_updates_internal(Evas *e,
              Evas_Object *pclip;
 
              obj = eina_array_data_get(&e->render_objects, i);
-             if (evas_object_is_frame_object_get(obj))
-               continue;
+             if (obj->is_frame) continue;
 
              if (obj->delete_me) continue;