adding missing y axis flip
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55559 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -103,8 +103,13 @@ OSStatus wxMacDrawCGImage(
|
||||
#if wxOSX_USE_CARBON
|
||||
return HIViewDrawCGImage( inContext, inBounds, inImage );
|
||||
#else
|
||||
// todo flip
|
||||
CGContextDrawImage(inContext, *inBounds, inImage );
|
||||
CGContextSaveGState(inContext);
|
||||
CGContextTranslateCTM(inContext, inBounds->origin.x, inBounds->origin.y + inBounds->size.height);
|
||||
CGRect r = *inBounds;
|
||||
r.origin.x = r.origin.y = 0;
|
||||
CGContextScaleCTM(inContext, 1, -1);
|
||||
CGContextDrawImage(inContext, r, inImage );
|
||||
CGContextRestoreGState(inContext);
|
||||
return noErr;
|
||||
#endif
|
||||
}
|
||||
|
Reference in New Issue
Block a user