Fix for LP64 architectures; Add some more tests.
[bertos.git] / mware / gfx.h
index 427063a1b906c5667d28f3f776b7680b1882189e..a878eabb81b6156d0a020e95c18b75302c05f91e 100755 (executable)
@@ -2,7 +2,7 @@
  * \file
  * Copyright 2003, 2004 Develer S.r.l. (http://www.develer.com/)
  * Copyright 1999 Bernardo Innocenti <bernie@develer.com>
- * This file is part of DevLib - See devlib/README for information.
+ * This file is part of DevLib - See README.devlib for information.
  *
  * \version $Id$
  *
 
 /*#*
  *#* $Log$
+ *#* Revision 1.12  2005/11/04 16:20:02  bernie
+ *#* Fix reference to README.devlib in header.
+ *#*
+ *#* Revision 1.11  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
+ *#* Revision 1.10  2005/03/01 23:26:45  bernie
+ *#* Use new CPU-neutral program-memory API.
+ *#*
  *#* Revision 1.9  2005/01/20 18:46:31  aleph
  *#* Fix progmem includes.
  *#*
@@ -42,9 +51,9 @@
 #ifndef MWARE_GFX_H
 #define MWARE_GFX_H
 
-#include <config.h>
-#include <compiler.h>
-#include <cpu.h>
+#include <cfg/config.h>
+#include <cfg/compiler.h>
+#include <cfg/cpu.h>
 
 
 /*! Common type for coordinates expressed in pixel units */
@@ -96,6 +105,7 @@ extern void gfx_lineTo     (Bitmap *bm, coord_t x,  coord_t y);
 extern void gfx_setClipRect(Bitmap *bm, coord_t xmin, coord_t ymin, coord_t xmax, coord_t ymax);
 
 #if CPU_HARVARD
+       #include <mware/pgm.h>
        extern void gfx_blit_P(Bitmap *bm, const pgm_uint8_t *raster);
 #endif