devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=51290c273c68a44b5932a43aaac4ccb430666d7e

commit 51290c273c68a44b5932a43aaac4ccb430666d7e
Author: Chris Michael <cp.mich...@samsung.com>
Date:   Mon Apr 20 11:44:33 2015 -0400

    wl-drm: Use ecore_evas_new with an engine name rather than direct 
ecore_evas_drm_new calls
    
    Signed-off-by: Chris Michael <cp.mich...@samsung.com>
---
 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 ec681ed..ab7c3ed 100644
--- a/src/modules/wl_drm/e_mod_main.c
+++ b/src/modules/wl_drm/e_mod_main.c
@@ -107,14 +107,14 @@ e_modapi_init(E_Module *m)
 
    if (e_comp_config_get()->engine == E_COMP_ENGINE_GL)
      {
-        e_comp->ee = ecore_evas_gl_drm_new(NULL, 0, 0, 0, 1, 1);
+        e_comp->ee = ecore_evas_new("gl_drm", 0, 0, 1, 1, NULL);
         e_comp_gl_set(!!e_comp->ee);
      }
 
    /* fallback to framebuffer drm (non-accel) */
    if (!e_comp->ee)
      {
-        if ((e_comp->ee = ecore_evas_drm_new(NULL, 0, 0, 0, 1, 1)))
+        if ((e_comp->ee = ecore_evas_new("drm", 0, 0, 1, 1, NULL)))
           {
              e_comp_gl_set(EINA_FALSE);
              elm_config_accel_preference_set("none");

-- 


Reply via email to