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

Unified Diff: src/core/SkPicture.cpp

Issue 496173002: Revert of Revert back to SkPictureData pictures. Huge perf regression. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 4 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: src/core/SkPicture.cpp
diff --git a/src/core/SkPicture.cpp b/src/core/SkPicture.cpp
index 160dd4b420df044adc9e03d761db7307cbcba459..70c1f67e19254209ef681dd6568f540bfbb20399 100644
--- a/src/core/SkPicture.cpp
+++ b/src/core/SkPicture.cpp
@@ -431,12 +431,8 @@
if (NULL == data) {
return NULL;
}
-#if 0
const SkPicture src(data, info.fWidth, info.fHeight);
return Forwardport(src);
-#else
- return SkNEW_ARGS(SkPicture, (data, info.fWidth, info.fHeight));
-#endif
}
return NULL;
@@ -456,12 +452,8 @@
if (NULL == data) {
return NULL;
}
-#if 0
const SkPicture src(data, info.fWidth, info.fHeight);
return Forwardport(src);
-#else
- return SkNEW_ARGS(SkPicture, (data, info.fWidth, info.fHeight));
-#endif
}
return NULL;
« 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