[Title] off OpenGl screen
authorgiwoong.kim <giwoong.kim@samsung.com>
Wed, 18 Jul 2012 13:20:52 +0000 (22:20 +0900)
committergiwoong.kim <giwoong.kim@samsung.com>
Wed, 18 Jul 2012 13:22:18 +0000 (22:22 +0900)
[Type] bugfix
[Module] Emulator / lcd
[Priority]
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

tizen/src/maru_sdl.c

index d93674523570fb21eb49469b0563b40caaf15fe5..cc76a5c371e1903aaa17cb65239edda98419b1f1 100644 (file)
@@ -98,7 +98,7 @@ static void _sdl_init(void)
         h = temp;
     }
 
-    if (gl_acceleration_capability_check () != 0) {
+    /*if (gl_acceleration_capability_check () != 0) {
         fprintf (stderr, "Warn: GL acceleration was disabled due to the fail of GL check!\n");
         surface_screen = NULL;
     } else {
@@ -108,17 +108,17 @@ static void _sdl_init(void)
     if (surface_screen == NULL) {
         sdl_opengl = 0;
         INFO("No OpenGL support on this system!??\n");
-        ERR("%s\n", SDL_GetError());
+        ERR("%s\n", SDL_GetError());*/
 
         surface_screen = SDL_SetVideoMode(w, h, get_emul_sdl_bpp(), SDL_FLAGS);
         if (surface_screen == NULL) {
             ERR("Could not open SDL display (%dx%dx%d): %s\n", w, h, get_emul_sdl_bpp(), SDL_GetError());
             return;
         }
-    } else {
+    /*} else {
         sdl_opengl = 1;
         INFO("OpenGL is supported on this system.\n");
-    }
+    }*/
 
     if (sdl_opengl == 1) {
         /* Set the OpenGL state */