X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=app%2Fdemo%2Fdemo.c;h=226463eded893ad96f0605beb33170b2544bd9f2;hb=56a07f2d54911b40c6f14e25a342e0a8742a6938;hp=35ece014397c938f45e337e60d4dadb84b82a80d;hpb=460402019f6f63ae31bcc19911bb93f58fbc4051;p=bertos.git diff --git a/app/demo/demo.c b/app/demo/demo.c old mode 100755 new mode 100644 index 35ece014..226463ed --- a/app/demo/demo.c +++ b/app/demo/demo.c @@ -1,8 +1,33 @@ /** * \file * * * \version $Id$ @@ -14,6 +39,9 @@ /*#* *#* $Log$ + *#* Revision 1.10 2007/09/29 16:30:37 bernie + *#* RASTER_SIZE(): Remove obsolete macro. + *#* *#* Revision 1.9 2006/09/20 14:29:34 marco *#* Add proc demo (not yet working). *#* @@ -82,14 +110,14 @@ static void magic(struct Bitmap *bitmap, coord_t x, coord_t y) gfx_lineTo(bitmap, coords[i]/2 + x, coords[i+1]/3 + y); } -void hello_world(Bitmap *bm) +static void hello_world(Bitmap *bm) { + extern const Font font_ncenB18; const Font *old_font = bm->font; gfx_bitmapClear(bm); /* Set big font */ - extern const Font font_ncenB18; gfx_setFont(bm, &font_ncenB18); text_xprintf(bm, 1, 0, STYLEF_BOLD | TEXT_FILL | TEXT_CENTER, @@ -105,7 +133,7 @@ void hello_world(Bitmap *bm) /** * Show the splash screen */ -void bouncing_logo(Bitmap *bm) +static void bouncing_logo(Bitmap *bm) { const long SPEED_SCALE = 1000; const long GRAVITY_ACCEL = 10; @@ -148,8 +176,8 @@ void win_demo(Bitmap *bm) Window root_win, small_win, large_win; Bitmap small_bm, large_bm; - uint8_t small_raster[RASTER_SIZE(small_width, small_height)]; - uint8_t large_raster[RASTER_SIZE(large_width, large_height)]; + uint8_t small_raster[RAST_SIZE(small_width, small_height)]; + uint8_t large_raster[RAST_SIZE(large_width, large_height)]; win_create(&root_win, bm);