Index: samplecode/SampleCamera.cpp |
diff --git a/samplecode/SampleCamera.cpp b/samplecode/SampleCamera.cpp |
index b860917f3fbae8af849960bcb84498ca0c03a206..ed6cc528293536f534555053dd45c8da3d87b907 100644 |
--- a/samplecode/SampleCamera.cpp |
+++ b/samplecode/SampleCamera.cpp |
@@ -5,6 +5,7 @@ |
* found in the LICENSE file. |
*/ |
+#include "DecodeFile.h" |
#include "SampleCode.h" |
#include "SkAnimTimer.h" |
#include "SkView.h" |
@@ -17,7 +18,6 @@ |
#include "SkShader.h" |
#include "SkUtils.h" |
#include "SkRandom.h" |
-#include "SkImageDecoder.h" |
class CameraView : public SampleView { |
SkTDArray<SkShader*> fShaders; |
@@ -33,7 +33,7 @@ public: |
SkString str; |
str.printf("/skimages/elephant%d.jpeg", i); |
SkBitmap bm; |
- if (SkImageDecoder::DecodeFile(str.c_str(), &bm)) { |
+ if (decode_file(str.c_str(), &bm)) { |
SkRect src = { 0, 0, SkIntToScalar(bm.width()), SkIntToScalar(bm.height()) }; |
SkRect dst = { -150, -150, 150, 150 }; |
SkMatrix matrix; |