* platform/graphics/cg/GraphicsContextCG.cpp:
(WebCore::GraphicsContext::drawNativeImage):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@169623
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2014-06-05 Timothy Horton <timothy_horton@apple.com>
+
+ Fix the !CACHE_SUBIMAGES build
+
+ * platform/graphics/cg/GraphicsContextCG.cpp:
+ (WebCore::GraphicsContext::drawNativeImage):
+
2014-06-05 Yusuke Suzuki <utatane.tea@gmail.com>
CSS JIT: Clean up StackAllocator
#if CACHE_SUBIMAGES
image = subimageCache().getSubimage(image.get(), subimageRect);
#else
- image = adoptCF(CGImageCreateWithImageInRect(image, subimageRect));
+ image = adoptCF(CGImageCreateWithImageInRect(image.get(), subimageRect));
#endif
if (currHeight < srcRect.maxY()) {
ASSERT(CGImageGetHeight(image.get()) == currHeight - CGRectIntegral(srcRect).origin.y);