3 |
|
* |
4 |
|
* $Id$ |
5 |
|
* |
6 |
< |
* Basilisk II (C) 1997-2001 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 |
23 |
|
#import <video.h> |
24 |
|
|
25 |
|
/* Set the strategy for drawing the bitmap in the Mac OS X window */ |
26 |
< |
#define CGDRAWBITMAP |
26 |
> |
//#define CGDRAWBITMAP |
27 |
> |
#if defined __i386__ |
28 |
|
//#define CGIMAGEREF |
29 |
+ |
#define NSBITMAP |
30 |
+ |
#else |
31 |
+ |
#define CGIMAGEREF |
32 |
|
//#define NSBITMAP |
33 |
+ |
#endif |
34 |
|
|
35 |
< |
// The frames-per-second benchmark function on my machine does roughly: |
36 |
< |
// |
37 |
< |
// OS: 10.1.5 10.2.2 |
38 |
< |
// CGDRAWBITMAP 15.2 36.6 |
34 |
< |
// CGIMAGEREF 15.0 27-135(i) |
35 |
< |
// NSBITMAP 15.1 26.9 |
36 |
< |
// |
37 |
< |
// (i) This seems to vary wildly between different builds on the same machine. |
38 |
< |
// I don't know why, but I definately don't trust it. Recently I noticed |
39 |
< |
// that it also varies by alpha channel strategy: |
40 |
< |
// kCGImageAlphaNone 36.6fps |
41 |
< |
// kCGImageAlphaPremultipliedFirst 112fps |
42 |
< |
// kCGImageAlphaNoneSkipFirst 135fps |
35 |
> |
// Using Core Graphics is fastest when rendering 32bit data. |
36 |
> |
// Using CGImageRefs allows us to use all the bitmaps that BasiliskII supports. |
37 |
> |
// When both Basilisk II and OS X are set to 'Thousands', updating a 312x342 |
38 |
> |
// window happens at over 500fps under 10.2, and over 600fps on 10.3! |
39 |
|
|
40 |
|
/* When the BasiliskII video driver respects the alpha bits, set this to let us use */ |
41 |
|
/* kCGImageAlphaPremultipliedFirst, and to have nice rounded corners on the screen. */ |
42 |
|
//#define CG_USE_ALPHA |
43 |
< |
/* At the moment, it writes in the fill 32bits :-( */ |
43 |
> |
/* At the moment, it writes in the full 32bits :-( */ |
44 |
|
|
45 |
|
|
46 |
|
#define MIN_WIDTH 512 |