Ecore_Evas: Re-enable wayland_egl engine (for testing).

SVN revision: 67079
This commit is contained in:
Christopher Michael 2012-01-11 13:03:48 +00:00
parent c7edac5b13
commit 99045fbdba
1 changed files with 3 additions and 3 deletions

View File

@ -624,14 +624,14 @@ _ecore_evas_constructor_wayland_egl(int x, int y, int w, int h, const char *extr
{
char *disp_name = NULL;
unsigned int frame = 0;
// Ecore_Evas *ee;
Ecore_Evas *ee;
_ecore_evas_parse_extra_options_str(extra_options, "display=", &disp_name);
_ecore_evas_parse_extra_options_uint(extra_options, "frame=", &frame);
// ee = ecore_evas_wayland_egl_new(disp_name, x, y, w, h, frame);
ee = ecore_evas_wayland_egl_new(disp_name, x, y, w, h, frame);
free(disp_name);
return NULL;
return ee;
}
#endif