1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

(Removed some debugging code)

This commit is contained in:
jules 2012-11-25 14:01:28 +00:00
parent e704ed0c46
commit 9a9adab648

View file

@ -777,17 +777,11 @@ public:
insideDrawRect = false;
}
#if 1
static PerformanceCounter pc ("Software renderer blit");
pc.start();
#endif
CGColorSpaceRef colourSpace = CGColorSpaceCreateDeviceRGB();
CGImageRef image = juce_createCoreGraphicsImage (temp, false, colourSpace, false);
CGColorSpaceRelease (colourSpace);
CGContextDrawImage (cg, CGRectMake (r.origin.x, r.origin.y, clipW, clipH), image);
CGImageRelease (image);
pc.stop();
}
}
}