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

Side by Side Diff: bench/BitmapRegionDecoderBench.cpp

Issue 1344993003: Add nanobench tests for BitmapRegionDecoder (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 3 months 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 | « bench/BitmapRegionDecoderBench.h ('k') | bench/CodecBench.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #include "BitmapRegionDecoderBench.h"
9 #include "CodecBenchPriv.h"
10 #include "SkBitmap.h"
11 #include "SkCodecTools.h"
12 #include "SkOSFile.h"
13
14 BitmapRegionDecoderBench::BitmapRegionDecoderBench(const char* baseName, SkData* encoded,
15 SkBitmapRegionDecoderInterface::Strategy strategy, SkColorType colorType ,
16 uint32_t sampleSize, const SkIRect& subset)
17 : fBRD(nullptr)
18 , fData(SkRef(encoded))
19 , fStrategy(strategy)
20 , fColorType(colorType)
21 , fSampleSize(sampleSize)
22 , fSubset(subset)
23 {
24 // Choose a useful name for the region decoding strategy
25 const char* strategyName;
26 switch (strategy) {
27 case SkBitmapRegionDecoderInterface::kOriginal_Strategy:
28 strategyName = "Original";
29 break;
30 case SkBitmapRegionDecoderInterface::kCanvas_Strategy:
31 strategyName = "Canvas";
32 break;
33 default:
34 SkASSERT(false);
35 strategyName = "";
36 break;
37 }
38
39 // Choose a useful name for the color type
40 const char* colorName = color_type_to_str(colorType);
41
42 fName.printf("BRD_%s_%s_%s", baseName, strategyName, colorName);
43 if (1 != sampleSize) {
44 fName.appendf("_%.3f", get_scale_from_sample_size(sampleSize));
45 }
46 }
47
48 const char* BitmapRegionDecoderBench::onGetName() {
49 return fName.c_str();
50 }
51
52 bool BitmapRegionDecoderBench::isSuitableFor(Backend backend) {
53 return kNonRendering_Backend == backend;
54 }
55
56 void BitmapRegionDecoderBench::onPreDraw() {
57 SkStreamRewindable* stream = new SkMemoryStream(fData);
58 fBRD.reset(SkBitmapRegionDecoderInterface::CreateBitmapRegionDecoder(stream, fStrategy));
59 }
60
61 void BitmapRegionDecoderBench::onDraw(const int n, SkCanvas* canvas) {
62 SkAutoTDelete<SkBitmap> bitmap;
63 for (int i = 0; i < n; i++) {
64 bitmap.reset(fBRD->decodeRegion(fSubset.left(), fSubset.top(), fSubset.w idth(),
65 fSubset.height(), fSampleSize, fColorType));
66 SkASSERT(nullptr != bitmap.get());
67 }
68 }
OLDNEW
« no previous file with comments | « bench/BitmapRegionDecoderBench.h ('k') | bench/CodecBench.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698