X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=gfx%2Fbitmap.c;h=c9f1b83dce8ae2fb9b1bf722c37d45d3271f9bc2;hb=7c051389f54e9da902884c617cb881a052b0c101;hp=ccc6f0bece6930a6465e31726dc2890722c2885a;hpb=4d062df20ce3b853319899469adbc37457b15499;p=bertos.git diff --git a/gfx/bitmap.c b/gfx/bitmap.c index ccc6f0be..c9f1b83d 100755 --- a/gfx/bitmap.c +++ b/gfx/bitmap.c @@ -16,6 +16,12 @@ /*#* *#* $Log$ + *#* Revision 1.8 2006/03/27 04:48:56 bernie + *#* gfx_blitImage(): New function; gfx_blitRaster(): Fix clipping bug. + *#* + *#* Revision 1.7 2006/03/07 22:18:04 bernie + *#* Correctly compute text width for prop fonts; Make styles a per-bitmap attribute. + *#* *#* Revision 1.6 2006/02/23 11:17:16 bernie *#* Documentation fixes. *#* @@ -73,6 +79,7 @@ void gfx_bitmapInit(Bitmap *bm, uint8_t *raster, coord_t w, coord_t h) #if CONFIG_GFX_TEXT gfx_setFont(bm, &default_font); + bm->styles = 0; #endif #if CONFIG_GFX_CLIPPING @@ -158,9 +165,15 @@ void gfx_blit(Bitmap *dst, const Rect *rect, const Bitmap *src, coord_t srcx, co } -void gfx_blitRaster(Bitmap *dst, coord_t dxmin, coord_t dymin, const uint8_t *raster, coord_t w, coord_t h, coord_t stride) +/** + * Blit a raster to a Bitmap. + * + * \see gfx_blit() + */ +void gfx_blitRaster(Bitmap *dst, coord_t dxmin, coord_t dymin, + const uint8_t *raster, coord_t w, coord_t h, coord_t stride) { - coord_t dxmax, dymax; + coord_t dxmax = dxmin + w, dymax = dymin + h; coord_t sxmin = 0, symin = 0; coord_t dx, dy, sx, sy; @@ -177,8 +190,11 @@ void gfx_blitRaster(Bitmap *dst, coord_t dxmin, coord_t dymin, const uint8_t *ra symin += dst->cr.ymin - dymin; dymin = dst->cr.ymin; } - dxmax = MIN(dxmin + w, dst->cr.xmax); - dymax = MIN(dymin + h, dst->cr.ymax); + dxmax = MIN(dxmax, dst->cr.xmax); + dymax = MIN(dymax, dst->cr.ymax); + + //kprintf("dxmin=%d, sxmin=%d, dxmax=%d; ", dxmin, sxmin, dxmax); + //kprintf("dymin=%d, symin=%d, dymax=%d\n", dymin, symin, dymax); /* TODO: make it not as dog slow as this */ for (dx = dxmin, sx = sxmin; dx < dxmax; ++dx, ++sx) @@ -186,6 +202,19 @@ void gfx_blitRaster(Bitmap *dst, coord_t dxmin, coord_t dymin, const uint8_t *ra BM_DRAWPIXEL(dst, dx, dy, RAST_READPIXEL(raster, sx, sy, stride)); } +/** + * Blit an Image to a Bitmap. + * + * \see gfx_blit() + */ +void gfx_blitImage(Bitmap *dst, coord_t dxmin, coord_t dymin, const Image *image) +{ + ASSERT(image); + + gfx_blitRaster(dst, dxmin, dymin, + image->raster, image->width, image->height, image->stride); +} + /*! * Set the bitmap clipping rectangle to the specified coordinates.