aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/copyTo4444.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gm/copyTo4444.cpp')
-rw-r--r--gm/copyTo4444.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/gm/copyTo4444.cpp b/gm/copyTo4444.cpp
index 6465d00212..635cc7b834 100644
--- a/gm/copyTo4444.cpp
+++ b/gm/copyTo4444.cpp
@@ -32,9 +32,8 @@ protected:
virtual void onDraw(SkCanvas* canvas) {
SkBitmap bm, bm4444;
- SkString resourcePath = GetResourcePath();
- SkString filename = SkOSPath::SkPathJoin(resourcePath.c_str(), "mandrill_512.png");
- if (!SkImageDecoder::DecodeFile(filename.c_str(), &bm, kN32_SkColorType,
+ SkString pngFilename = GetResourcePath("mandrill_512.png");
+ if (!SkImageDecoder::DecodeFile(pngFilename.c_str(), &bm, kN32_SkColorType,
SkImageDecoder::kDecodePixels_Mode)) {
SkDebugf("Could not decode the file. Did you forget to set the "
"resourcePath?\n");