X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=gfx%2Ftext.c;h=c37e871e508acb3c03c57a0d11e751d4646cadc4;hb=1fc31f45bcec8bc23a5924ae5b288439abca8ded;hp=8e343efeec6b0f693a6d85dca97be8da477f33cd;hpb=7e394eca4d4ebded583c8f204e906a94f67353db;p=bertos.git diff --git a/gfx/text.c b/gfx/text.c old mode 100755 new mode 100644 index 8e343efe..c37e871e --- a/gfx/text.c +++ b/gfx/text.c @@ -1,9 +1,34 @@ -/*! +/** * \file * * * \brief Text graphic routines @@ -15,6 +40,9 @@ /*#* *#* $Log$ + *#* Revision 1.13 2006/07/19 12:56:26 bernie + *#* Convert to new Doxygen style. + *#* *#* Revision 1.12 2006/05/25 23:35:22 bernie *#* Implement correct and faster clipping for algo text. *#* @@ -123,7 +151,7 @@ */ static bool ansi_mode = false; -/*! +/** * Move (imaginary) cursor to coordinates specified. */ void text_setCoord(struct Bitmap *bm, int x, int y) @@ -133,7 +161,7 @@ void text_setCoord(struct Bitmap *bm, int x, int y) } -/*! +/** * Move (imaginary) cursor to column and row specified. * Next text write will start a that row and col. */ @@ -148,7 +176,7 @@ void text_moveTo(struct Bitmap *bm, int row, int col) } -/*! +/** * Render char \a c on Bitmap \a bm. */ static int text_putglyph(char c, struct Bitmap *bm) @@ -303,7 +331,7 @@ static int text_putglyph(char c, struct Bitmap *bm) } -/*! +/** * Render char \c c, with (currently) limited ANSI escapes * emulation support and '\n' for newline. */ @@ -345,7 +373,7 @@ int text_putchar(char c, struct Bitmap *bm) } -/*! +/** * Clear the screen and reset cursor position */ void text_clear(struct Bitmap *bmp)