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

Side by Side Diff: bench/BitmapRegionDecoderBench.cpp

Issue 1379853003: Fix for nexus 5 crashing in GL benches (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: tweaks Created 5 years, 2 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/BitmapScaleBench.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"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 } 46 }
47 47
48 const char* BitmapRegionDecoderBench::onGetName() { 48 const char* BitmapRegionDecoderBench::onGetName() {
49 return fName.c_str(); 49 return fName.c_str();
50 } 50 }
51 51
52 bool BitmapRegionDecoderBench::isSuitableFor(Backend backend) { 52 bool BitmapRegionDecoderBench::isSuitableFor(Backend backend) {
53 return kNonRendering_Backend == backend; 53 return kNonRendering_Backend == backend;
54 } 54 }
55 55
56 void BitmapRegionDecoderBench::onPreDraw() { 56 void BitmapRegionDecoderBench::onDelayedSetup() {
57 SkStreamRewindable* stream = new SkMemoryStream(fData); 57 SkStreamRewindable* stream = new SkMemoryStream(fData);
58 fBRD.reset(SkBitmapRegionDecoderInterface::CreateBitmapRegionDecoder(stream, fStrategy)); 58 fBRD.reset(SkBitmapRegionDecoderInterface::CreateBitmapRegionDecoder(stream, fStrategy));
59 } 59 }
60 60
61 void BitmapRegionDecoderBench::onDraw(const int n, SkCanvas* canvas) { 61 void BitmapRegionDecoderBench::onDraw(const int n, SkCanvas* canvas) {
62 SkAutoTDelete<SkBitmap> bitmap; 62 SkAutoTDelete<SkBitmap> bitmap;
63 for (int i = 0; i < n; i++) { 63 for (int i = 0; i < n; i++) {
64 bitmap.reset(fBRD->decodeRegion(fSubset.left(), fSubset.top(), fSubset.w idth(), 64 bitmap.reset(fBRD->decodeRegion(fSubset.left(), fSubset.top(), fSubset.w idth(),
65 fSubset.height(), fSampleSize, fColorType)); 65 fSubset.height(), fSampleSize, fColorType));
66 SkASSERT(nullptr != bitmap.get()); 66 SkASSERT(nullptr != bitmap.get());
67 } 67 }
68 } 68 }
OLDNEW
« no previous file with comments | « bench/BitmapRegionDecoderBench.h ('k') | bench/BitmapScaleBench.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698