- wxDC * const dc = renderer->GetDC();
- renderer->WXCallRender(wxFromNSRect(controlView, cellFrame), dc, 0);
- renderer->SetDC(NULL);
+ CGContextRef context = (CGContextRef) [[NSGraphicsContext currentContext] graphicsPort];
+ CGContextSaveGState( context );
+
+ if ( ![controlView isFlipped] )
+ {
+ CGContextTranslateCTM( context, 0, [controlView bounds].size.height );
+ CGContextScaleCTM( context, 1, -1 );
+ }
+
+ // wxDC * const dc = renderer->GetDC();
+ wxGraphicsContext* gc = wxGraphicsContext::CreateFromNative(context);
+ wxGCDC dc;
+ dc.SetGraphicsContext(gc);
+ renderer->WXCallRender(wxFromNSRect(controlView, cellFrame), &dc, 0);
+
+ CGContextRestoreGState( context );
+ // renderer->SetDC(NULL);