X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=gfx%2Fgfx.h;h=7c05c245bd19c0f7f8aca47ad4ddf5267ba35bcf;hb=c050bdecde22c15215c52b55a6107cf74147508c;hp=bd4124fa92dc5a116d7ca84677ec6b817b147a97;hpb=85c1ab406a633641eeadc7d093d68c6f3ef10642;p=bertos.git diff --git a/gfx/gfx.h b/gfx/gfx.h index bd4124fa..7c05c245 100755 --- a/gfx/gfx.h +++ b/gfx/gfx.h @@ -14,6 +14,9 @@ /*#* *#* $Log$ + *#* Revision 1.5 2006/01/17 02:31:29 bernie + *#* Add bitmap format support; Improve some comments. + *#* *#* Revision 1.4 2006/01/16 03:30:57 bernie *#* Make header C++ friendly. *#* @@ -67,6 +70,7 @@ typedef struct Bitmap { uint8_t *raster; /*!< Pointer to byte array to hold the data */ coord_t width, height; /*!< Width/Height in pixels */ + coord_t stride; /*!< Bytes per row. */ coord_t penX, penY; /*!< Current pen position MoveTo()/LineTo() */ Rect cr; /*!< Clip drawing inside this rectangle */