maru_sdl : Modified the logging function. 86/17586/1
authorjinhyung.jo <jinhyung.jo@samsung.com>
Thu, 6 Mar 2014 05:12:55 +0000 (14:12 +0900)
committerjinhyung.jo <jinhyung.jo@samsung.com>
Fri, 7 Mar 2014 04:14:21 +0000 (13:14 +0900)
Replace the function, fprintf -> debug_ch macro(ERR).
Remove unused code.

Change-Id: Icdbb6e75dece2517210604fd83839e84ca955324
Signed-off-by: Jinhyung Jo <jinhyung.jo@samsung.com>
tizen/src/maru_sdl.c

index b3f1cff21bdbc1ba7dceb14b81bcc7eefc2f2c2b..efea0f4b61524484e3bee8c3590de9de225c3d57 100644 (file)
@@ -188,12 +188,11 @@ static SDL_Surface *maru_do_pixman_rotate(SDL_Surface *rz_src,
                                          0.0, (double)rz_dst->w);
             break;
         default:
-            fprintf(stdout, "not supported angle factor (angle=%d)\n", angle);
+            ERR("Not supported angle factor (angle=%d)\n", angle);
             break;
     }
     pixman_transform_from_pixman_f_transform(&matrix, &matrix_f);
     pixman_image_set_transform(src, &matrix);
-    //pixman_image_set_filter(src, PIXMAN_FILTER_BILINEAR, NULL, 0);
     pixman_image_composite(PIXMAN_OP_SRC, src, NULL, dst,
                            0, 0, 0, 0, 0, 0,
                            rz_dst->w, rz_dst->h);