]> xenbits.xensource.com Git - xen.git/commitdiff
ioemu: Fall back to SDL rendering when GLX fails.
authorKeir Fraser <keir.fraser@citrix.com>
Fri, 28 Mar 2008 11:15:43 +0000 (11:15 +0000)
committerKeir Fraser <keir.fraser@citrix.com>
Fri, 28 Mar 2008 11:15:43 +0000 (11:15 +0000)
From: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
tools/ioemu/sdl.c

index aacc54f0415960c073a722fa6896236822bc5eec..f3aa5e367cc03fd02b8880addae9cc5ef958df88 100644 (file)
@@ -210,21 +210,32 @@ static void sdl_resize(DisplayState *ds, int w, int h, int linesize)
 
  again:
     screen = SDL_SetVideoMode(w, h, 0, flags);
-#ifndef CONFIG_OPENGL
+
     if (!screen) {
         fprintf(stderr, "Could not open SDL display: %s\n", SDL_GetError());
+        if (opengl_enabled) {
+            /* Fallback to SDL */
+            opengl_enabled = 0;
+            ds->dpy_update = sdl_update;
+            ds->dpy_setdata = sdl_setdata;
+            sdl_resize(ds, w, h, linesize);
+            return;
+        }
         exit(1);
     }
-    if (!screen->pixels && (flags & SDL_HWSURFACE) && (flags & SDL_FULLSCREEN)) {
-        flags &= ~SDL_HWSURFACE;
-        goto again;
-    }
 
-    if (!screen->pixels) {
-        fprintf(stderr, "Could not open SDL display: %s\n", SDL_GetError());
-        exit(1);
+    if (!opengl_enabled) {
+        if (!screen->pixels && (flags & SDL_HWSURFACE) && (flags & SDL_FULLSCREEN)) {
+            flags &= ~SDL_HWSURFACE;
+            goto again;
+        }
+
+        if (!screen->pixels) {
+            fprintf(stderr, "Could not open SDL display: %s\n", SDL_GetError());
+            exit(1);
+        }
     }
-#endif
+
     ds->width = w;
     ds->height = h;
     if (!ds->shared_buf) {