removing code for pre 10.6 systems

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77034 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2014-08-09 17:07:54 +00:00
parent f71ea69505
commit 1d21bd0877
2 changed files with 1 additions and 14 deletions

View File

@ -90,16 +90,7 @@ wxBitmap wxScreenDCImpl::DoGetAsBitmap(const wxRect *subrect) const
CGImageRef image = NULL;
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
if ( UMAGetSystemVersion() >= 0x1060)
{
image = CGDisplayCreateImage(kCGDirectMainDisplay);
}
else
#endif
{
image = grabViaOpenGL(kCGNullDirectDisplay, srcRect);
}
image = CGDisplayCreateImage(kCGDirectMainDisplay);
wxASSERT_MSG(image, wxT("wxScreenDC::GetAsBitmap - unable to get screenshot."));

View File

@ -1757,11 +1757,7 @@ bool wxMacCoreGraphicsContext::SetInterpolationQuality(wxInterpolationQuality in
quality = kCGInterpolationLow;
break;
case wxINTERPOLATION_GOOD:
#if wxOSX_USE_COCOA_OR_CARBON
quality = UMAGetSystemVersion() < 0x1060 ? kCGInterpolationHigh : (CGInterpolationQuality) 4 /*kCGInterpolationMedium only on 10.6*/;
#else
quality = kCGInterpolationMedium;
#endif
break;
case wxINTERPOLATION_BEST:
quality = kCGInterpolationHigh;