From 63dc694f56e8eae061cc7bbfde4b91e6fa48bd29 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Thu, 15 Jan 2015 13:29:43 -0500 Subject: [PATCH] wl_drm: Fix creation of the ecore_evas_gl_drm Signed-off-by: Chris Michael --- src/modules/wl_drm/e_mod_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/wl_drm/e_mod_main.c b/src/modules/wl_drm/e_mod_main.c index 118f9eff1..795c415a5 100644 --- a/src/modules/wl_drm/e_mod_main.c +++ b/src/modules/wl_drm/e_mod_main.c @@ -76,8 +76,8 @@ e_modapi_init(E_Module *m) if ((e_comp_gl_get()) && (e_comp_config_get()->engine == E_COMP_ENGINE_GL)) { - comp->ee == ecore_evas_gl_drm_new(NULL, 0, 0, 0, 1, 1); - if(!comp->ee) + comp->ee = ecore_evas_gl_drm_new(NULL, 0, 0, 0, 1, 1); + if (!comp->ee) e_comp_gl_set(EINA_FALSE); }