(svn r11599) -Change: [OSX] 10.4 will now use quickdraw for window mode instead of quartz

The reason is that quickdraw is way faster (try fast forward)
  10.5 will still use quartz as it can't handle quickdraw.
This commit is contained in:
bjarni
2007-12-08 15:21:37 +00:00
parent 97a8a0d77f
commit 593b49dc49
3 changed files with 6 additions and 5 deletions

View File

@@ -782,8 +782,8 @@ CocoaSubdriver *QZ_CreateWindowQuartzSubdriver(int width, int height, int bpp)
{
WindowQuartzSubdriver *ret;
if (!MacOSVersionIsAtLeast(10, 4, 0)) {
DEBUG(driver, 0, "The cocoa quartz subdriver requires Mac OS X 10.4 or later.");
if (!MacOSVersionIsAtLeast(10, 5, 0)) {
DEBUG(driver, 0, "The cocoa quartz subdriver requires Mac OS X 10.5 or later.");
return NULL;
}