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

Side by Side Diff: bench/BitmapRegionDecoderBench.cpp

Issue 1430493005: Delete dead subset benches from nanobench (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Build fix: delete unused fUseCodec Created 5 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
« no previous file with comments | « no previous file | bench/nanobench.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 2015 Google Inc. 2 * Copyright 2015 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 "BitmapRegionDecoderBench.h" 8 #include "BitmapRegionDecoderBench.h"
9 #include "CodecBenchPriv.h" 9 #include "CodecBenchPriv.h"
10 #include "SkBitmap.h" 10 #include "SkBitmap.h"
11 #include "SkCodecTools.h" 11 #include "SkCodecTools.h"
12 #include "SkOSFile.h" 12 #include "SkOSFile.h"
13 13
14 BitmapRegionDecoderBench::BitmapRegionDecoderBench(const char* baseName, SkData* encoded, 14 BitmapRegionDecoderBench::BitmapRegionDecoderBench(const char* baseName, SkData* encoded,
15 SkBitmapRegionDecoder::Strategy strategy, SkColorType colorType, 15 SkBitmapRegionDecoder::Strategy strategy, SkColorType colorType,
16 uint32_t sampleSize, const SkIRect& subset) 16 uint32_t sampleSize, const SkIRect& subset)
17 : fBRD(nullptr) 17 : fBRD(nullptr)
18 , fData(SkRef(encoded)) 18 , fData(SkRef(encoded))
19 , fStrategy(strategy) 19 , fStrategy(strategy)
20 , fColorType(colorType) 20 , fColorType(colorType)
21 , fSampleSize(sampleSize) 21 , fSampleSize(sampleSize)
22 , fSubset(subset) 22 , fSubset(subset)
23 { 23 {
24 // Choose a useful name for the region decoding strategy 24 // Choose a useful name for the region decoding strategy
25 const char* strategyName; 25 const char* strategyName;
26 switch (strategy) { 26 switch (strategy) {
27 case SkBitmapRegionDecoder::kOriginal_Strategy:
28 strategyName = "Original";
29 break;
30 case SkBitmapRegionDecoder::kCanvas_Strategy: 27 case SkBitmapRegionDecoder::kCanvas_Strategy:
31 strategyName = "Canvas"; 28 strategyName = "Canvas";
32 break; 29 break;
33 case SkBitmapRegionDecoder::kAndroidCodec_Strategy: 30 case SkBitmapRegionDecoder::kAndroidCodec_Strategy:
34 strategyName = "AndroidCodec"; 31 strategyName = "AndroidCodec";
35 break; 32 break;
36 default: 33 default:
37 SkASSERT(false); 34 SkASSERT(false);
38 strategyName = ""; 35 strategyName = "";
39 break; 36 break;
(...skipping 19 matching lines...) Expand all
59 void BitmapRegionDecoderBench::onDelayedSetup() { 56 void BitmapRegionDecoderBench::onDelayedSetup() {
60 fBRD.reset(SkBitmapRegionDecoder::Create(fData, fStrategy)); 57 fBRD.reset(SkBitmapRegionDecoder::Create(fData, fStrategy));
61 } 58 }
62 59
63 void BitmapRegionDecoderBench::onDraw(int n, SkCanvas* canvas) { 60 void BitmapRegionDecoderBench::onDraw(int n, SkCanvas* canvas) {
64 for (int i = 0; i < n; i++) { 61 for (int i = 0; i < n; i++) {
65 SkBitmap bm; 62 SkBitmap bm;
66 SkAssertResult(fBRD->decodeRegion(&bm, nullptr, fSubset, fSampleSize, fC olorType, false)); 63 SkAssertResult(fBRD->decodeRegion(&bm, nullptr, fSubset, fSampleSize, fC olorType, false));
67 } 64 }
68 } 65 }
OLDNEW
« no previous file with comments | « no previous file | bench/nanobench.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698