From a409f7c338d779b4ed473a27765b46cd4963edfa Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Thu, 14 Apr 2016 20:41:16 +0000 Subject: Fix Quartz-specific graphics problem apparent in tree demo. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11604 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/drivers/Quartz/Fl_Quartz_Image_Surface_Driver.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/drivers') diff --git a/src/drivers/Quartz/Fl_Quartz_Image_Surface_Driver.cxx b/src/drivers/Quartz/Fl_Quartz_Image_Surface_Driver.cxx index 3f087351b..db01a3fe0 100644 --- a/src/drivers/Quartz/Fl_Quartz_Image_Surface_Driver.cxx +++ b/src/drivers/Quartz/Fl_Quartz_Image_Surface_Driver.cxx @@ -55,7 +55,7 @@ Fl_Quartz_Image_Surface_Driver::Fl_Quartz_Image_Surface_Driver(int w, int h, int offscreen = CGBitmapContextCreate(calloc(W*H,4), W, H, 8, W*4, lut, kCGImageAlphaPremultipliedLast); CGColorSpaceRelease(lut); driver(new Fl_Quartz_Graphics_Driver); - CGContextTranslateCTM(offscreen, -0.5, 0.5); // as when drawing to a window + CGContextTranslateCTM(offscreen, 0.5, -0.5); // as when drawing to a window if (high_res) { CGContextScaleCTM(offscreen, 2, 2); } -- cgit v1.2.3