ecore-evas: Remove unused 'just_mapped' flag

As this flag is not being used anywhere for anything, remove it.
Useless to have it.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2017-01-30 11:50:05 -05:00
parent 51da6df5ad
commit 20cbc92639
2 changed files with 0 additions and 3 deletions

View File

@ -1772,7 +1772,6 @@ _ecore_evas_wl_common_show(Ecore_Evas *ee)
einfo->info.wl_surface = ecore_wl2_window_surface_get(wdata->win);
einfo->info.hidden = wdata->win->pending.configure; //EINA_FALSE;
einfo->www_avail = !!wdata->win->www_surface;
einfo->just_mapped = EINA_TRUE;
if (!evas_engine_info_set(ee->evas, (Evas_Engine_Info *)einfo))
ERR("Failed to set Evas Engine Info for '%s'", ee->driver);
evas_damage_rectangle_add(ee->evas, 0, 0, ee->w + fw, ee->h + fh);
@ -2019,7 +2018,6 @@ _ee_cb_sync_done(void *data, int type EINA_UNUSED, void *event EINA_UNUSED)
evas_damage_rectangle_add(ee->evas, 0, 0,
ee->w + fw, ee->h + fh);
einfo->www_avail = !!wdata->win->www_surface;
einfo->just_mapped = EINA_TRUE;
}
}

View File

@ -30,7 +30,6 @@ struct _Evas_Engine_Info_Wayland
Eina_Bool indirect : 1;
Eina_Bool www_avail : 1;
Eina_Bool just_mapped : 1;
Eina_Rectangle window;
int x_rel, y_rel;
int x_cursor, y_cursor;