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

Side by Side Diff: bench/WritePixelsBench.cpp

Issue 536003002: Hide fields in SkImageInfo (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix qt Created 6 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 | « 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 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 "SkCanvas.h" 9 #include "SkCanvas.h"
10 #include "SkString.h" 10 #include "SkString.h"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 virtual void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE { 48 virtual void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE {
49 SkISize size = canvas->getDeviceSize(); 49 SkISize size = canvas->getDeviceSize();
50 50
51 canvas->clear(0xFFFF0000); 51 canvas->clear(0xFFFF0000);
52 52
53 SkBitmap bmp; 53 SkBitmap bmp;
54 bmp.allocN32Pixels(size.width(), size.height()); 54 bmp.allocN32Pixels(size.width(), size.height());
55 canvas->readPixels(&bmp, 0, 0); 55 canvas->readPixels(&bmp, 0, 0);
56 56
57 SkImageInfo info = bmp.info(); 57 SkImageInfo info = SkImageInfo::Make(bmp.width(), bmp.height(), fColorTy pe, fAlphaType);
58 info.fColorType = fColorType;
59 info.fAlphaType = fAlphaType;
60 58
61 for (int loop = 0; loop < loops; ++loop) { 59 for (int loop = 0; loop < loops; ++loop) {
62 canvas->writePixels(info, bmp.getPixels(), bmp.rowBytes(), 0, 0); 60 canvas->writePixels(info, bmp.getPixels(), bmp.rowBytes(), 0, 0);
63 } 61 }
64 } 62 }
65 63
66 private: 64 private:
67 SkColorType fColorType; 65 SkColorType fColorType;
68 SkAlphaType fAlphaType; 66 SkAlphaType fAlphaType;
69 SkString fName; 67 SkString fName;
70 68
71 typedef Benchmark INHERITED; 69 typedef Benchmark INHERITED;
72 }; 70 };
73 71
74 ////////////////////////////////////////////////////////////////////////////// 72 //////////////////////////////////////////////////////////////////////////////
75 73
76 DEF_BENCH( return SkNEW_ARGS(WritePixelsBench, (kRGBA_8888_SkColorType, kPremul_ SkAlphaType)); ) 74 DEF_BENCH( return SkNEW_ARGS(WritePixelsBench, (kRGBA_8888_SkColorType, kPremul_ SkAlphaType)); )
77 DEF_BENCH( return SkNEW_ARGS(WritePixelsBench, (kRGBA_8888_SkColorType, kUnpremu l_SkAlphaType)); ) 75 DEF_BENCH( return SkNEW_ARGS(WritePixelsBench, (kRGBA_8888_SkColorType, kUnpremu l_SkAlphaType)); )
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