Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Unified Diff: Source/WebCore/platform/graphics/skia/ImageSkia.cpp

Issue 9960076: Merge 113373 - [chromium] Drawing an accelerated canvas onto itself is slow. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/platform/graphics/skia/ImageSkia.cpp
===================================================================
--- Source/WebCore/platform/graphics/skia/ImageSkia.cpp (revision 113757)
+++ Source/WebCore/platform/graphics/skia/ImageSkia.cpp (working copy)
@@ -479,7 +479,8 @@
{
if (copyPixels) {
SkBitmap temp;
- bitmap.copyTo(&temp, bitmap.config());
+ if (!bitmap.deepCopyTo(&temp, bitmap.config()))
+ bitmap.copyTo(&temp, bitmap.config());
return adoptRef(new BitmapImageSingleFrameSkia(temp));
}
return adoptRef(new BitmapImageSingleFrameSkia(bitmap));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698