| Index: tests/PathOpsSkpClipTest.cpp
|
| diff --git a/tests/PathOpsSkpClipTest.cpp b/tests/PathOpsSkpClipTest.cpp
|
| index 326abb66c7c52e6fa6cb63f7054caebbe0ffee1b..6d66a69e6dbcca09da3f8d357e22f7559b39c49f 100644
|
| --- a/tests/PathOpsSkpClipTest.cpp
|
| +++ b/tests/PathOpsSkpClipTest.cpp
|
| @@ -16,7 +16,6 @@
|
| #include "SkDevice.h"
|
| #include "SkForceLinking.h"
|
| #include "SkGraphics.h"
|
| -#include "SkImageDecoder.h"
|
| #include "SkImageEncoder.h"
|
| #include "SkOSFile.h"
|
| #include "SkPathOpsDebug.h"
|
| @@ -33,8 +32,6 @@
|
|
|
| #include <stdlib.h>
|
|
|
| -__SK_FORCE_IMAGE_DECODER_LINKING;
|
| -
|
| /* add local exceptions here */
|
| /* TODO : add command flag interface */
|
| const struct SkipOverTest {
|
| @@ -470,7 +467,7 @@ void TestResult::testOne() {
|
| SkDebugf("invalid stream %s\n", path.c_str());
|
| goto finish;
|
| }
|
| - pic = SkPicture::CreateFromStream(&stream, &SkImageDecoder::DecodeMemory);
|
| + pic = SkPicture::CreateFromStream(&stream);
|
| if (!pic) {
|
| SkDebugf("unable to decode %s\n", fFilename);
|
| goto finish;
|
|
|