3 |
|
* |
4 |
|
* $Id$ |
5 |
|
* |
6 |
< |
* Basilisk II (C) 1997-2002 Christian Bauer |
6 |
> |
* Basilisk II (C) 1997-2008 Christian Bauer |
7 |
|
* |
8 |
|
* This program is free software; you can redistribute it and/or modify |
9 |
|
* it under the terms of the GNU General Public License as published by |
34 |
|
#endif |
35 |
|
#ifdef NSBITMAP |
36 |
|
NSBitmapImageRep *bitmap; |
37 |
+ |
#else |
38 |
+ |
void *bitmap; |
39 |
|
#endif |
40 |
|
#ifdef CGDRAWBITMAP |
39 |
– |
void *bitmap; |
41 |
|
short bps, spp, bpp; |
42 |
|
int bytesPerRow; |
43 |
|
BOOL isPlanar, hasAlpha; |
66 |
|
#endif |
67 |
|
#ifdef CGIMAGEREF |
68 |
|
- (void) readyToDraw: (CGImageRef) image |
69 |
+ |
bitmap: (void *) theBitmap |
70 |
|
imageWidth: (short) width |
71 |
|
imageHeight: (short) height; |
72 |
|
#endif |
85 |
|
- (void) disableDrawing; |
86 |
|
- (void) startedFullScreen: (CGDirectDisplayID) theDisplay; |
87 |
|
|
88 |
+ |
- (void) blacken; |
89 |
+ |
- (void) clear; |
90 |
+ |
|
91 |
|
- (short) width; |
92 |
|
- (short) height; |
93 |
|
|