ee_wayland_shm: Remove resize flag

Summary:
This hasn't been useful in a very long time.
Depends on D6120

Reviewers: zmike, cedric

Reviewed By: zmike

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D6121
This commit is contained in:
Derek Foreman 2018-05-08 13:26:18 -05:00
parent cadf0728fd
commit af9ae04eda
1 changed files with 1 additions and 4 deletions

View File

@ -104,18 +104,15 @@ eng_output_resize(void *engine EINA_UNUSED, void *data, int w, int h)
{
Render_Engine *re;
Evas_Engine_Info_Wayland *einfo;
Eina_Bool resize = EINA_FALSE;
LOGFN(__FILE__, __LINE__, __FUNCTION__);
if (!(re = (Render_Engine *)data)) return;
if (!(einfo = re->generic.ob->info)) return;
if (einfo->info.edges) resize = EINA_TRUE;
_evas_outbuf_reconfigure(re->generic.ob, w, h,
einfo->info.rotation, einfo->info.depth,
einfo->info.destination_alpha, resize);
einfo->info.destination_alpha, 0);
evas_common_tilebuf_free(re->generic.tb);
if ((re->generic.tb = evas_common_tilebuf_new(w, h)))