summaryrefslogtreecommitdiff
path: root/amiga/bitmap.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2008-12-28 15:55:52 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2008-12-28 15:55:52 +0000
commit605cf900b483dc3baebc21e394e64d905a31bd60 (patch)
tree9a3a66236c9c8f4024fa53d6fc789d56f1d34cfb /amiga/bitmap.h
parentc059f24cfa7ee7d86c9b7121b6406eca468e35a7 (diff)
downloadnetsurf-605cf900b483dc3baebc21e394e64d905a31bd60.tar.gz
netsurf-605cf900b483dc3baebc21e394e64d905a31bd60.tar.bz2
Some bitmap caching - not making much difference and using up a lot of gfx mem, may
need to make this a configurable option. svn path=/trunk/netsurf/; revision=5943
Diffstat (limited to 'amiga/bitmap.h')
-rwxr-xr-xamiga/bitmap.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/amiga/bitmap.h b/amiga/bitmap.h
index 48cc0c125..cf49ffab9 100755
--- a/amiga/bitmap.h
+++ b/amiga/bitmap.h
@@ -19,11 +19,16 @@
#ifndef AMIGA_BITMAP_H
#define AMIGA_BITMAP_H
#include <exec/types.h>
+#include <proto/graphics.h>
+
struct bitmap {
int width;
int height;
UBYTE *pixdata;
bool opaque;
+ struct BitMap *nativebm;
+ int nativebmwidth;
+ int nativebmheight;
};
#endif