X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=gfx%2Fgfx_p.h;h=c2f10b49fdb340591059e03c401182f551b68dad;hb=07382ad480794063a2d5be63547eb288034d9832;hp=a599a8aa9ca8b903a58df4f2b3cd8f09f02abf70;hpb=31b4a3ad1e2824fd9beb298695dec7fb34ee6130;p=bertos.git diff --git a/gfx/gfx_p.h b/gfx/gfx_p.h old mode 100755 new mode 100644 index a599a8aa..c2f10b49 --- a/gfx/gfx_p.h +++ b/gfx/gfx_p.h @@ -1,9 +1,34 @@ -/*! +/** * \file * * * \version $Id$ @@ -15,6 +40,9 @@ /*#* *#* $Log$ + *#* Revision 1.7 2006/07/19 12:56:26 bernie + *#* Convert to new Doxygen style. + *#* *#* Revision 1.6 2006/05/27 17:17:34 bernie *#* Optimize away divisions in RAST_ADDR/MASK macros. *#* @@ -63,7 +91,7 @@ #define BM_ADDR(bm, x, y) RAST_ADDR((bm)->raster, (x), (y), (bm)->stride) #define BM_MASK(bm, x, y) RAST_MASK((bm)->raster, (x), (y)) -/*! +/** * Plot a pixel in bitmap \a bm. * * \note bm is evaluated twice. @@ -72,7 +100,7 @@ #define BM_PLOT(bm, x, y) \ ( *BM_ADDR(bm, x, y) |= BM_MASK(bm, x, y) ) -/*! +/** * Clear a pixel in bitmap \a bm. * * \note bm is evaluated twice. @@ -81,7 +109,7 @@ #define BM_CLEAR(bm, x, y) \ ( *BM_ADDR(bm, x, y) &= ~BM_MASK(bm, x, y) ) -/*! +/** * Set a pixel in bitmap \a bm to the specified color. * * \note bm is evaluated twice. @@ -95,7 +123,7 @@ *p = (*p & ~mask) | ((fg_pen) ? mask : 0); \ } while (0) -/*! +/** * Get the value of the pixel in bitmap \a bm. * * \return The returned value is either 0 or 1.