6 #ifndef SCREEN_ROUTINES 7 #define SCREEN_ROUTINES 9 #include "rpage/aos/inc.prl" 10 #include <intuition/intuition.h> 11 #include <graphics/gfxbase.h> 14 struct BitMap *bitmaps[2];
15 amiga_color *palettes[2];
16 struct Screen *screen;
17 struct Window *window;
18 BOOL double_buffer_enabled;
23 #define DBUFFER_ENABLED TRUE 27 void WaitVBL(buffered_screen *screen);
28 void disableScreen(
void);
29 void enableScreen(
void);
31 buffered_screen *openMainScreen(
void);
32 void closeMainScreen(buffered_screen *main_screen);
33 struct BitMap *setupBitMap(LONG, LONG, LONG);
34 void freeBitMap(
struct BitMap *,LONG, LONG, LONG);
35 LONG setupPlanes(
struct BitMap *, LONG, LONG, LONG);
36 void freePlanes(
struct BitMap *, LONG, LONG, LONG);
37 USHORT getLogicalBitmapIndex(buffered_screen *screen);
38 USHORT getPhysicalBitmapIndex(buffered_screen *screen);
39 void flipBuffers(buffered_screen *screen);
40 void presentPalette(buffered_screen *screen);
41 void presentScreen(buffered_screen *screen);
42 void synchronizeBuffers(buffered_screen *screen);
43 UWORD screenGetDepth(
void);
45 VOID add36k(
struct IntuitionBase *ibase);