summaryrefslogtreecommitdiff
path: root/amiga/bitmap.h
diff options
context:
space:
mode:
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