Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Side by Side Diff: bench/ImageDecodeBench.cpp

Issue 73643005: Implement a benchmark for GrResourceCache (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: address comments Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « bench/GrResourceCacheBench.cpp ('k') | bench/InterpBench.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "SkBenchmark.h" 8 #include "SkBenchmark.h"
9 #include "SkBitmap.h" 9 #include "SkBitmap.h"
10 #include "SkData.h" 10 #include "SkData.h"
11 #include "SkForceLinking.h" 11 #include "SkForceLinking.h"
12 #include "SkImageDecoder.h" 12 #include "SkImageDecoder.h"
13 #include "SkOSFile.h" 13 #include "SkOSFile.h"
14 #include "SkStream.h" 14 #include "SkStream.h"
15 #include "SkString.h" 15 #include "SkString.h"
16 16
17 __SK_FORCE_IMAGE_DECODER_LINKING; 17 __SK_FORCE_IMAGE_DECODER_LINKING;
18 18
19 class SkCanvas; 19 class SkCanvas;
20 20
21 class ImageDecodeBench : public SkBenchmark { 21 class ImageDecodeBench : public SkBenchmark {
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::SkBasename(filename)); 28 fName.append(SkOSPath::SkBasename(filename));
29 fIsRendering = false; 29 }
30
31 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE {
32 return backend == kNonRendering_Backend;
30 } 33 }
31 34
32 protected: 35 protected:
33 virtual const char* onGetName() SK_OVERRIDE { 36 virtual const char* onGetName() SK_OVERRIDE {
34 return fName.c_str(); 37 return fName.c_str();
35 } 38 }
36 39
37 virtual void onPreDraw() SK_OVERRIDE { 40 virtual void onPreDraw() SK_OVERRIDE {
38 SkFILEStream fileStream(fFilename.c_str()); 41 SkFILEStream fileStream(fFilename.c_str());
39 fValid = fileStream.isValid() && fileStream.getLength() > 0; 42 fValid = fileStream.isValid() && fileStream.getLength() > 0;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 const SkString fFilename; 84 const SkString fFilename;
82 SkMemoryStream fStream; 85 SkMemoryStream fStream;
83 bool fValid; 86 bool fValid;
84 87
85 typedef SkBenchmark INHERITED; 88 typedef SkBenchmark INHERITED;
86 }; 89 };
87 90
88 // These are files which call decodePalette 91 // These are files which call decodePalette
89 //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")); )
90 //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")); )
OLDNEW
« no previous file with comments | « bench/GrResourceCacheBench.cpp ('k') | bench/InterpBench.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698