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

Side by Side Diff: tools/VisualBench/VisualSKPBench.cpp

Issue 1215033002: Add benchmarkstream to visualbench (Closed) Base URL: https://skia.googlesource.com/skia.git@microbenches
Patch Set: tweaks Created 5 years, 5 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 | « tools/VisualBench/VisualSKPBench.h ('k') | no next file » | 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
9 #include "VisualSKPBench.h"
10
11 VisualSKPBench::VisualSKPBench(const char* name, const SkPicture* pic)
12 : fPic(SkRef(pic))
13 , fName(name) {
14 fUniqueName.printf("%s", name);
15 }
16
17 const char* VisualSKPBench::onGetName() {
18 return fName.c_str();
19 }
20
21 const char* VisualSKPBench::onGetUniqueName() {
22 return fUniqueName.c_str();
23 }
24
25 bool VisualSKPBench::isSuitableFor(Backend backend) {
26 return backend != kNonRendering_Backend;
27 }
28
29 void VisualSKPBench::onDraw(const int loops, SkCanvas* canvas) {
30 for (int i = 0; i < loops; i++) {
31 canvas->drawPicture(fPic);
32 }
33 }
OLDNEW
« no previous file with comments | « tools/VisualBench/VisualSKPBench.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698