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

Side by Side Diff: gm/drawregion.cpp

Issue 2277053002: Add drawRegion() API to SkCanvas (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Added shader to test Created 4 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 | gm/drawregionmodes.cpp » ('j') | include/core/SkCanvas.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2016 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 "gm.h"
9 #include "SkCanvas.h"
10
11 /**
12 * This is very similar to the RectGrid macrobench in Android.
13 */
14 class DrawRegionGM : public skiagm::GM {
15 public:
16 DrawRegionGM() {}
17
18 protected:
19 SkString onShortName() override {
20 return SkString("drawregion");
21 }
22
23 SkISize onISize() override {
24 return SkISize::Make(500, 500);
25 }
26
27 bool runAsBench() const override {
28 return true;
29 }
30
31 void onOnceBeforeDraw() override {
32 for (int x = 50; x < 250; x+=2) {
33 for (int y = 50; y < 250; y+=2) {
34 fRegion.op(x, y, x + 1, y + 1, SkRegion::kUnion_Op);
35 }
36 }
37 }
38
39 void onDraw(SkCanvas* canvas) override {
40 SkPaint paint;
41 paint.setStyle(SkPaint::kFill_Style);
42 paint.setColor(0xFFFF00FF);
43 canvas->drawRect(SkRect::MakeLTRB(50.0f, 50.0f, 250.0f, 250.0f), paint);
44
45 paint.setColor(0xFF00FFFF);
46 canvas->drawRegion(fRegion, paint);
47 }
48
49 SkRegion fRegion;
50
51 private:
52 typedef skiagm::GM INHERITED;
53 };
54 DEF_GM( return new DrawRegionGM; )
OLDNEW
« no previous file with comments | « no previous file | gm/drawregionmodes.cpp » ('j') | include/core/SkCanvas.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698