and disable other engines in choices. software only one left.

SVN revision: 55810
This commit is contained in:
Carsten Haitzler 2011-01-03 04:41:57 +00:00
parent 6b58638772
commit 5afba4ed16
1 changed files with 5 additions and 1 deletions

View File

@ -1460,13 +1460,17 @@ e_config_engine_list(void)
* contexts, so for now just disable it. xrender is much more complete in * contexts, so for now just disable it. xrender is much more complete in
* this regard. * this regard.
*/ */
#if 0 #if 0 /* opengl cant do occludes for frames - only useful for compositor */
l = eina_list_append(l, strdup("GL")); l = eina_list_append(l, strdup("GL"));
#endif #endif
#if 0 /* xrender too incomplete these days */
if (ecore_evas_engine_type_supported_get(ECORE_EVAS_ENGINE_XRENDER_X11)) if (ecore_evas_engine_type_supported_get(ECORE_EVAS_ENGINE_XRENDER_X11))
l = eina_list_append(l, strdup("XRENDER")); 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)) if (ecore_evas_engine_type_supported_get(ECORE_EVAS_ENGINE_SOFTWARE_16_X11))
l = eina_list_append(l, strdup("SOFTWARE_16")); l = eina_list_append(l, strdup("SOFTWARE_16"));
#endif
return l; return l;
} }