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

Unified Diff: src/core/SkPicture.cpp

Issue 496603002: 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 70c1f67e19254209ef681dd6568f540bfbb20399..160dd4b420df044adc9e03d761db7307cbcba459 100644
--- a/src/core/SkPicture.cpp
+++ b/src/core/SkPicture.cpp
@@ -431,8 +431,12 @@ SkPicture* SkPicture::CreateFromStream(SkStream* stream, InstallPixelRefProc pro
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;
@@ -452,8 +456,12 @@ SkPicture* SkPicture::CreateFromBuffer(SkReadBuffer& buffer) {
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