diff --git a/src/bin/e_canvas.c b/src/bin/e_canvas.c index 304617122..ee4e4bece 100644 --- a/src/bin/e_canvas.c +++ b/src/bin/e_canvas.c @@ -56,14 +56,14 @@ e_canvas_engine_decide(int engine) /* if engine is software-16 - do we support it? */ if (engine == E_EVAS_ENGINE_SOFTWARE_X11_16) { - if (!ecore_evas_engine_type_supported_get(ECORE_EVAS_ENGINE_SOFTWARE_X11_16)) + if (!ecore_evas_engine_type_supported_get(ECORE_EVAS_ENGINE_SOFTWARE_16_X11)) engine = E_EVAS_ENGINE_SOFTWARE_X11; } /* if engine is gl - do we support it? */ if (engine == E_EVAS_ENGINE_GL_X11) { /* if we dont - fall back to software x11 */ - if (!ecore_evas_engine_type_supported_get(ECORE_EVAS_ENGINE_GL_X11)) + if (!ecore_evas_engine_type_supported_get(ECORE_EVAS_ENGINE_OPENGL_X11)) engine = E_EVAS_ENGINE_SOFTWARE_X11; } /* support xrender? */ diff --git a/src/bin/e_config.c b/src/bin/e_config.c index d85e4bea6..4489b8f95 100644 --- a/src/bin/e_config.c +++ b/src/bin/e_config.c @@ -1801,7 +1801,7 @@ e_config_engine_list(void) #endif if (ecore_evas_engine_type_supported_get(ECORE_EVAS_ENGINE_XRENDER_X11)) l = evas_list_append(l, strdup("XRENDER")); - if (ecore_evas_engine_type_supported_get(ECORE_EVAS_ENGINE_SOFTWARE_X11_16)) + if (ecore_evas_engine_type_supported_get(ECORE_EVAS_ENGINE_SOFTWARE_16_X11)) l = evas_list_append(l, strdup("SOFTWARE_16")); return l; }