- wxMacPortSetter helper( dc ) ;
- PicHandle pict = (PicHandle) GetHMETAFILE() ;
- DrawPicture( pict , &(**pict).picFrame ) ;
+#if wxMAC_USE_CORE_GRAPHICS
+ QDPictRef cgPictRef = M_METAFILEDATA->m_qdPictRef;
+ CGContextRef cg = ((wxMacCGContext*)(dc->GetGraphicContext()))->GetNativeContext();
+ CGRect bounds = QDPictGetBounds( cgPictRef );
+
+ CGContextSaveGState( cg );
+ CGContextTranslateCTM( cg, 0, bounds.size.width );
+ CGContextScaleCTM( cg, 1, -1 );
+ QDPictDrawToCGContext( cg, bounds, cgPictRef );
+ CGContextRestoreGState( cg );
+#else
+ PicHandle pict = (PicHandle)GetHMETAFILE();
+ wxMacPortSetter helper( dc );
+ Rect picFrame;
+ DrawPicture( pict, wxMacGetPictureBounds( pict, &picFrame ) );
+#endif