6 #ifndef BITMAP_ROUTINES 7 #define BITMAP_ROUTINES 13 #include "rpage/aos/inc.prl" 19 #include <exec/types.h> 20 #include <exec/memory.h> 21 #include <exec/libraries.h> 22 #include <intuition/intuition.h> 23 #include <libraries/dos.h> 24 #include <devices/keyboard.h> 26 #include <clib/exec_protos.h> 27 #include <clib/alib_protos.h> 28 #include <clib/graphics_protos.h> 29 #include <clib/intuition_protos.h> 36 BOOL load_pak_img_to_bitmap(
struct BitMap **bitmap,
UWORD **palette,
BYTE *packed_block,
UBYTE *name);
37 BOOL load_pak_img_to_new_bitmap(
struct BitMap **new_bitmap,
UWORD **new_palette,
BYTE *packed_block,
UBYTE *name);
43 struct BitMap *allocate_new_bitmap(
short width,
short height,
short depth);
44 void free_allocated_bitmap(
struct BitMap *allocated_bitmap);
45 PLANEPTR load_raw_to_mem(
UBYTE *name,
ULONG size,
BOOL allocate_into_chipmem);
46 void clear_bitmap(
struct BitMap *bitmap);
51 #define BLIT_BITMAP_S(SRC_BITMAP, DEST_BITMAP, SCREEN_WIDTH, SCREEN_HEIGHT, X, Y) BltBitMap(SRC_BITMAP, 0, 0, \ 53 SCREEN_WIDTH, SCREEN_HEIGHT, \ 56 #endif // #ifndef BITMAP_ROUTINES