wl_egl_window is created in evas_wayland egl backend.
So, wl_egl_window value of _Evas_Engine_Info_Wayland_Egl is needed to update with this value.
Change-Id: I5076cd95ed90c951729d09ed03d5dd6efa93bf9e
else if ((gw->rot == 90) || (gw->rot == 270))
gw->win = wl_egl_window_create(gw->surface, gw->h, gw->w);
+ if (gw->win == NULL)
+ {
+ ERR("wl_egl_window_create() fail");
+ eng_window_free(gw);
+ return NULL;
+ }
+ gw->info->info.win = gw->win;
+
gw->egl_surface[0] =
eglCreateWindowSurface(gw->egl_disp, gw->egl_config,
(EGLNativeWindowType)gw->win, NULL);