disable text% offscreen buffer for OS X in an effort to improve anti-aliased onscreen text

svn: r7729
This commit is contained in:
Matthew Flatt 2007-11-15 00:42:43 +00:00
parent 8b0e48d7aa
commit 86ee638d2a

View File

@ -465,6 +465,10 @@ Bool wxMediaBuffer::ReadyOffscreen(double width, double height)
|| (height > REDICULOUS_SIZE))
return FALSE;
#ifdef wx_mac
return FALSE;
#endif
if (!offscreenInUse && (height > bmHeight || width > bmWidth)) {
wxBitmap *oldbm = bitmap;