From 5afba4ed160ce2e17d9281fe4ce1f1d0d5754b5a Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Mon, 3 Jan 2011 04:41:57 +0000 Subject: [PATCH] and disable other engines in choices. software only one left. SVN revision: 55810 --- src/bin/e_config.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/bin/e_config.c b/src/bin/e_config.c index 007322b7d..2f1738448 100644 --- a/src/bin/e_config.c +++ b/src/bin/e_config.c @@ -1460,13 +1460,17 @@ e_config_engine_list(void) * contexts, so for now just disable it. xrender is much more complete in * this regard. */ -#if 0 +#if 0 /* opengl cant do occludes for frames - only useful for compositor */ l = eina_list_append(l, strdup("GL")); #endif +#if 0 /* xrender too incomplete these days */ if (ecore_evas_engine_type_supported_get(ECORE_EVAS_ENGINE_XRENDER_X11)) l = eina_list_append(l, strdup("XRENDER")); +#endif +#if 0 /* software-16 too incomplete and buggy */ if (ecore_evas_engine_type_supported_get(ECORE_EVAS_ENGINE_SOFTWARE_16_X11)) l = eina_list_append(l, strdup("SOFTWARE_16")); +#endif return l; }