mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-12-14 12:09:36 +00:00
Major draw code refactor
This commit is contained in:
@@ -25,19 +25,17 @@ enum QDFlags
|
||||
useTempMem = 1,
|
||||
};
|
||||
|
||||
PLError_t NewGWorld(GWorldPtr *gworld, GpPixelFormat_t pixelFormat, const Rect *bounds, CTabHandle colorTable);
|
||||
void DisposeGWorld(GWorldPtr gworld);
|
||||
PLError_t NewGWorld(DrawSurface **gworld, GpPixelFormat_t pixelFormat, const Rect *bounds, CTabHandle colorTable);
|
||||
void DisposeGWorld(DrawSurface *gworld);
|
||||
|
||||
PixMapHandle GetGWorldPixMap(GWorldPtr gworld);
|
||||
PixMapHandle GetGWorldPixMap(DrawSurface *gworld);
|
||||
|
||||
PicHandle GetPicture(short resID);
|
||||
|
||||
void OffsetRect(Rect *rect, int right, int down);
|
||||
|
||||
void DrawPicture(PicHandle pict, Rect *bounds);
|
||||
|
||||
CGrafPtr GetGraphicsPort();
|
||||
void SetGraphicsPort(CGrafPtr gw);
|
||||
DrawSurface *GetGraphicsPort();
|
||||
void SetGraphicsPort(DrawSurface *gw);
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user