From: Mikko Ylinen Date: Tue, 17 Sep 2013 14:53:02 +0000 (+0300) Subject: Disable progress bar and center logo X-Git-Tag: accepted/tizen/20130920.181706~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=214bfa4d41deff87400d7c9995ebc7b4c1200592;p=profile%2Fivi%2Fpsplash.git Disable progress bar and center logo Change-Id: Ie36d33f80e656a0e098dabc45f2d2fb911a45b8b Signed-off-by: Mikko Ylinen --- diff --git a/psplash.c b/psplash.c index 09cf0d0..e7381ba 100644 --- a/psplash.c +++ b/psplash.c @@ -270,12 +270,12 @@ main (int argc, char** argv) /* Draw the Poky logo */ psplash_fb_draw_image (fb, (fb->width - POKY_IMG_WIDTH)/2, - ((fb->height * 5) / 6 - POKY_IMG_HEIGHT)/2, + (fb->height - POKY_IMG_HEIGHT)/2, POKY_IMG_WIDTH, POKY_IMG_HEIGHT, POKY_IMG_BYTES_PER_PIXEL, POKY_IMG_RLE_PIXEL_DATA); - +#if 0 /* Draw progress bar border */ psplash_fb_draw_image (fb, (fb->width - BAR_IMG_WIDTH)/2, @@ -288,6 +288,7 @@ main (int argc, char** argv) psplash_draw_progress (fb, 0); psplash_draw_msg (fb, MSG); +#endif psplash_main (fb, pipe_fd, 0);