diff options
-rw-r--r-- | bench/nanobench.cpp | 3 | ||||
-rw-r--r-- | gyp/bench.gyp | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/bench/nanobench.cpp b/bench/nanobench.cpp index 389fd1d71f..eb48ec228d 100644 --- a/bench/nanobench.cpp +++ b/bench/nanobench.cpp @@ -10,7 +10,6 @@ #include "Benchmark.h" #include "CrashHandler.h" #include "GMBench.h" -#include "LazyDecodeBitmap.h" #include "ProcStats.h" #include "ResultsWriter.h" #include "RecordingBench.h" @@ -485,7 +484,7 @@ public: return false; } - pic->reset(SkPicture::CreateFromStream(stream.get(), &sk_tools::LazyDecodeBitmap)); + pic->reset(SkPicture::CreateFromStream(stream.get())); if (pic->get() == NULL) { SkDebugf("Could not read %s as an SkPicture.\n", path); return false; diff --git a/gyp/bench.gyp b/gyp/bench.gyp index fa9e5e3a98..26849d511a 100644 --- a/gyp/bench.gyp +++ b/gyp/bench.gyp @@ -14,7 +14,6 @@ '../bench/RecordingBench.cpp', '../bench/SKPBench.cpp', '../bench/nanobench.cpp', - '../tools/LazyDecodeBitmap.cpp', ], 'includes': [ 'bench.gypi', |