| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "Benchmark.h" | 8 #include "Benchmark.h" |
| 9 #include "SkBitmap.h" | 9 #include "SkBitmap.h" |
| 10 #include "SkData.h" | 10 #include "SkData.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 class ImageDecodeBench : public Benchmark { | 21 class ImageDecodeBench : public Benchmark { |
| 22 public: | 22 public: |
| 23 ImageDecodeBench(void* p, const char* filename) | 23 ImageDecodeBench(void* p, const char* filename) |
| 24 : fName("image_decode_") | 24 : fName("image_decode_") |
| 25 , fFilename(filename) | 25 , fFilename(filename) |
| 26 , fStream() | 26 , fStream() |
| 27 , fValid(false) { | 27 , fValid(false) { |
| 28 fName.append(SkOSPath::Basename(filename)); | 28 fName.append(SkOSPath::Basename(filename)); |
| 29 } | 29 } |
| 30 | 30 |
| 31 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE { | 31 bool isSuitableFor(Backend backend) SK_OVERRIDE { |
| 32 return backend == kNonRendering_Backend; | 32 return backend == kNonRendering_Backend; |
| 33 } | 33 } |
| 34 | 34 |
| 35 protected: | 35 protected: |
| 36 virtual const char* onGetName() SK_OVERRIDE { | 36 const char* onGetName() SK_OVERRIDE { |
| 37 return fName.c_str(); | 37 return fName.c_str(); |
| 38 } | 38 } |
| 39 | 39 |
| 40 virtual void onPreDraw() SK_OVERRIDE { | 40 void onPreDraw() SK_OVERRIDE { |
| 41 SkFILEStream fileStream(fFilename.c_str()); | 41 SkFILEStream fileStream(fFilename.c_str()); |
| 42 fValid = fileStream.isValid() && fileStream.getLength() > 0; | 42 fValid = fileStream.isValid() && fileStream.getLength() > 0; |
| 43 if (fValid) { | 43 if (fValid) { |
| 44 const size_t size = fileStream.getLength(); | 44 const size_t size = fileStream.getLength(); |
| 45 void* data = sk_malloc_throw(size); | 45 void* data = sk_malloc_throw(size); |
| 46 if (fileStream.read(data, size) < size) { | 46 if (fileStream.read(data, size) < size) { |
| 47 fValid = false; | 47 fValid = false; |
| 48 } else { | 48 } else { |
| 49 SkAutoTUnref<SkData> skdata(SkData::NewFromMalloc(data, size)); | 49 SkAutoTUnref<SkData> skdata(SkData::NewFromMalloc(data, size)); |
| 50 fStream.setData(skdata.get()); | 50 fStream.setData(skdata.get()); |
| 51 } | 51 } |
| 52 } | 52 } |
| 53 } | 53 } |
| 54 | 54 |
| 55 virtual void onDraw(const int loops, SkCanvas*) SK_OVERRIDE { | 55 void onDraw(const int loops, SkCanvas*) SK_OVERRIDE { |
| 56 #ifdef SK_DEBUG | 56 #ifdef SK_DEBUG |
| 57 if (!fValid) { | 57 if (!fValid) { |
| 58 SkDebugf("stream was invalid: %s\n", fName.c_str()); | 58 SkDebugf("stream was invalid: %s\n", fName.c_str()); |
| 59 return; | 59 return; |
| 60 } | 60 } |
| 61 #endif | 61 #endif |
| 62 // Decode a bunch of times | 62 // Decode a bunch of times |
| 63 SkBitmap bm; | 63 SkBitmap bm; |
| 64 for (int i = 0; i < loops; ++i) { | 64 for (int i = 0; i < loops; ++i) { |
| 65 SkDEBUGCODE(bool success =) SkImageDecoder::DecodeStream(&fStream, &
bm); | 65 SkDEBUGCODE(bool success =) SkImageDecoder::DecodeStream(&fStream, &
bm); |
| (...skipping 18 matching lines...) Expand all Loading... |
| 84 const SkString fFilename; | 84 const SkString fFilename; |
| 85 SkMemoryStream fStream; | 85 SkMemoryStream fStream; |
| 86 bool fValid; | 86 bool fValid; |
| 87 | 87 |
| 88 typedef Benchmark INHERITED; | 88 typedef Benchmark INHERITED; |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 // These are files which call decodePalette | 91 // These are files which call decodePalette |
| 92 //DEF_BENCH( return SkNEW_ARGS(ImageDecodeBench, ("/usr/local/google/home/scrogg
o/Downloads/images/hal_163x90.png")); ) | 92 //DEF_BENCH( return SkNEW_ARGS(ImageDecodeBench, ("/usr/local/google/home/scrogg
o/Downloads/images/hal_163x90.png")); ) |
| 93 //DEF_BENCH( return SkNEW_ARGS(ImageDecodeBench, ("/usr/local/google/home/scrogg
o/Downloads/images/box_19_top-left.png")); ) | 93 //DEF_BENCH( return SkNEW_ARGS(ImageDecodeBench, ("/usr/local/google/home/scrogg
o/Downloads/images/box_19_top-left.png")); ) |
| OLD | NEW |