ee_wayland: remove edges flag

Summary:
Nothing needs this anymore.
Depends on D6121

Reviewers: zmike, cedric

Reviewed By: zmike

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D6122
This commit is contained in:
Derek Foreman 2018-05-08 13:26:22 -05:00
parent af9ae04eda
commit 684d6a69d6
2 changed files with 2 additions and 14 deletions

View File

@ -1985,15 +1985,6 @@ _ecore_evas_wl_common_screen_dpi_get(const Ecore_Evas *ee, int *xdpi, int *ydpi)
if (ydpi) *ydpi = dpi;
}
static void
_ecore_evas_wayland_resize_edge_set(Ecore_Evas *ee, int edge)
{
Evas_Engine_Info_Wayland *einfo;
if ((einfo = (Evas_Engine_Info_Wayland *)evas_engine_info_get(ee->evas)))
einfo->info.edges = edge;
}
static void
_ecore_evas_wayland_resize(Ecore_Evas *ee, int location)
{
@ -2004,10 +1995,7 @@ _ecore_evas_wayland_resize(Ecore_Evas *ee, int location)
if (!ee) return;
wdata = ee->engine.data;
if (wdata->win)
{
_ecore_evas_wayland_resize_edge_set(ee, location);
ecore_wl2_window_resize(wdata->win, NULL, location);
}
ecore_wl2_window_resize(wdata->win, NULL, location);
}
static void

View File

@ -15,7 +15,7 @@ struct _Evas_Engine_Info_Wayland
struct
{
Ecore_Wl2_Window *wl2_win;
int depth, rotation, edges;
int depth, rotation;
Eina_Bool destination_alpha : 1;
Eina_Bool hidden : 1;
} info;