more fixups for systems without ecore_evas_gl

SVN revision: 11408
This commit is contained in:
atmosphere 2004-08-28 02:22:29 +00:00 committed by atmosphere
parent 4938c64dc4
commit ad64bc77c2
1 changed files with 3 additions and 0 deletions

View File

@ -108,8 +108,11 @@ main_start(int argc, char **argv)
}
if (mode == 0)
ecore_evas = ecore_evas_software_x11_new(NULL, 0, 0, 0, startw, starth);
#if HAVE_ECORE_EVAS_GL
else if (mode == 1)
ecore_evas = ecore_evas_gl_x11_new(NULL, 0, 0, 0, startw, starth);
#endif
#else
ecore_evas = ecore_evas_fb_new(NULL, 270, startw, starth);
#endif