dont allow gl engine to be used - see comment.

SVN revision: 17375
This commit is contained in:
Carsten Haitzler 2005-10-10 05:01:54 +00:00
parent d8074391aa
commit d01eb0b21a
1 changed files with 5 additions and 1 deletions

View File

@ -1582,7 +1582,11 @@ e_config_engine_list(void)
{
Evas_List *l = NULL;
l = evas_list_append(l, strdup("SOFTWARE"));
l = evas_list_append(l, strdup("GL"));
// DISABLE GL as an accessible engine - it does have problems, ESPECIALLY with
// shaped windows (it can't do them), and multiple gl windows and shared
// contexts, so for now just disable it. xrender is much more complete in
// this regard.
// l = evas_list_append(l, strdup("GL"));
l = evas_list_append(l, strdup("XRENDER"));
return l;
}