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

Unified Diff: bench/nanobench.cpp

Issue 743613005: nanobench: lazily decode bitmaps in .skps. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 1 month 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 | gyp/bench.gyp » ('j') | gyp/bench.gyp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bench/nanobench.cpp
diff --git a/bench/nanobench.cpp b/bench/nanobench.cpp
index b7603bf3bcd1925ad30bf7ba05cbdfc229372d67..be151f61bf1d3daf34e4bb0c80d42d2f0d7b64a0 100644
--- a/bench/nanobench.cpp
+++ b/bench/nanobench.cpp
@@ -10,6 +10,7 @@
#include "Benchmark.h"
#include "CrashHandler.h"
#include "GMBench.h"
+#include "LazyDecodeBitmap.h"
#include "ProcStats.h"
#include "ResultsWriter.h"
#include "RecordingBench.h"
@@ -487,7 +488,7 @@ public:
return false;
}
- pic->reset(SkPicture::CreateFromStream(stream.get()));
+ pic->reset(SkPicture::CreateFromStream(stream.get(), &sk_tools::LazyDecodeBitmap));
scroggo 2014/11/25 20:31:13 Alternatively, we could optionally do lazy decodes
if (pic->get() == NULL) {
SkDebugf("Could not read %s as an SkPicture.\n", path);
return false;
« no previous file with comments | « no previous file | gyp/bench.gyp » ('j') | gyp/bench.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698