From e1e211e61e3ef270771d44f0f60eaa841e8f5816 Mon Sep 17 00:00:00 2001 From: "jinhyung.jo" Date: Thu, 6 Mar 2014 14:12:55 +0900 Subject: [PATCH] maru_sdl : Modified the logging function. Replace the function, fprintf -> debug_ch macro(ERR). Remove unused code. Change-Id: Icdbb6e75dece2517210604fd83839e84ca955324 Signed-off-by: Jinhyung Jo --- tizen/src/maru_sdl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tizen/src/maru_sdl.c b/tizen/src/maru_sdl.c index b3f1cff21b..efea0f4b61 100644 --- a/tizen/src/maru_sdl.c +++ b/tizen/src/maru_sdl.c @@ -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); -- 2.34.1