lottie/example: remove unused evas object from evasapp class.

Change-Id: I84f8b0b624ba8c81af91cd6d0c2d1adb5fa82db4
This commit is contained in:
subhransu mohanty
2018-12-14 14:21:47 +09:00
parent 0c3cb67811
commit c67093b41f
2 changed files with 0 additions and 10 deletions

View File

@@ -68,19 +68,12 @@ EvasApp::setup()
mBackground = evas_object_rectangle_add(mEvas);
evas_object_color_set(mBackground, 70, 70, 70, 255);
evas_object_show(mBackground);
mVg = evas_object_vg_add(mEvas);
evas_object_show(mVg);
mRoot = evas_vg_container_add(mVg);
evas_object_vg_root_node_set(mVg, mRoot);
}
void
EvasApp::resize(int w, int h)
{
evas_object_resize(mBackground, w, h);
evas_object_resize(mVg, w, h);
mw = w;
mh = h;
}