Move menu to gui/.
[bertos.git] / gfx / gfx.h
index 6e812a96e19a27e220b58db98bfa3bbac09c676d..a165fd7ee446004eecd8083e7b400d996535c9a3 100755 (executable)
--- a/gfx/gfx.h
+++ b/gfx/gfx.h
 
 /*#*
  *#* $Log$
+ *#* Revision 1.14  2006/04/27 05:39:24  bernie
+ *#* Enhance text rendering to arbitrary x,y coords.
+ *#*
+ *#* Revision 1.13  2006/04/11 00:08:24  bernie
+ *#* text_offset(): New function, but I'm not quite confident with the design.
+ *#*
  *#* Revision 1.12  2006/03/27 04:48:56  bernie
  *#* gfx_blitImage(): New function; gfx_blitRaster(): Fix clipping bug.
  *#*
@@ -138,6 +144,8 @@ typedef struct Bitmap
         * The text rendering routine can apply a few simple transformations
         * to the current font in order to generate common styles such as
         * bold, italic and underline from plain glyphs.
+        *
+        * \see text_style()
         */
        uint8_t styles;
 #endif
@@ -164,7 +172,7 @@ typedef struct Image
        coord_t width;     /*!< Raster width in pixels. */
        coord_t height;    /*!< Raster height in pixels. */
        coord_t stride;    /*!< Bytes per row. */
-};
+} Image;
 
 #if CONFIG_BITMAP_FMT == BITMAP_FMT_PLANAR_H_MSB
        /**