| Index: bench/ETCBitmapBench.cpp
|
| diff --git a/bench/ETCBitmapBench.cpp b/bench/ETCBitmapBench.cpp
|
| index 36573c8245ad6e343e2f81de053fac776a5d3a27..4255923c4b99e3dbc06a3300334e8bd358c74f86 100644
|
| --- a/bench/ETCBitmapBench.cpp
|
| +++ b/bench/ETCBitmapBench.cpp
|
| @@ -9,7 +9,7 @@
|
| #include "Resources.h"
|
| #include "SkCanvas.h"
|
| #include "SkData.h"
|
| -#include "SkDecodingImageGenerator.h"
|
| +#include "SkImageGenerator.h"
|
| #include "SkImageDecoder.h"
|
| #include "SkOSFile.h"
|
| #include "SkPixelRef.h"
|
| @@ -151,9 +151,7 @@ protected:
|
| }
|
|
|
| // Install pixel ref
|
| - if (!SkInstallDiscardablePixelRef(
|
| - SkDecodingImageGenerator::Create(
|
| - fPKMData, SkDecodingImageGenerator::Options()), &(this->fBitmap))) {
|
| + if (!SkInstallDiscardablePixelRef(fPKMData, &(this->fBitmap))) {
|
| SkDebugf("Could not install discardable pixel ref.\n");
|
| return;
|
| }
|
|
|