summaryrefslogtreecommitdiff
path: root/amiga/bitmap.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2012-08-05 15:16:02 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2012-08-05 15:16:02 +0100
commitc359b9400b720f9ee175154a1ffa542b5ccc2d97 (patch)
treeed3bd27061a2cd4b3532e166fd967daff04eed8c /amiga/bitmap.h
parenta46c5ae09f2a1fe048b0da5418cf9ed33f512166 (diff)
downloadnetsurf-c359b9400b720f9ee175154a1ffa542b5ccc2d97.tar.gz
netsurf-c359b9400b720f9ee175154a1ffa542b5ccc2d97.tar.bz2
Palette-mapped bitmap support
Diffstat (limited to 'amiga/bitmap.h')
-rwxr-xr-xamiga/bitmap.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/amiga/bitmap.h b/amiga/bitmap.h
index 41d488e28..3153ee7da 100755
--- a/amiga/bitmap.h
+++ b/amiga/bitmap.h
@@ -35,12 +35,16 @@ struct bitmap {
struct BitMap *nativebm;
int nativebmwidth;
int nativebmheight;
+ APTR native_mask;
+ Object *dto;
char *url; /* temporary storage space */
char *title; /* temporary storage space */
ULONG *icondata; /* for appicons */
};
struct BitMap *ami_getcachenativebm(struct bitmap *bitmap,int width,int height,struct BitMap *friendbm);
+struct BitMap *ami_bitmap_get_palettemapped(struct bitmap *bitmap, int width, int height);
+
Object *ami_datatype_object_from_bitmap(struct bitmap *bitmap);
struct bitmap *ami_bitmap_from_datatype(char *filename);
#endif