blob: 51dfde2d92b3172f704b660d1a9f9696fc99a65a [file] [log] [blame]
reedd7127e72014-08-12 06:53:09 -07001/*
2 * Copyright 2012 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#include "SkShader.h"
11#include "SkBlurMaskFilter.h"
12
13namespace skiagm {
14
15/**
16 * Stress test the GPU samplers by rendering a textured glyph with a mask and
17 * an AA clip
18 */
19class SamplerStressGM : public GM {
20public:
21 SamplerStressGM()
22 : fTextureCreated(false)
23 , fShader(NULL)
24 , fMaskFilter(NULL) {
25 }
26
27 virtual ~SamplerStressGM() {
28 }
29
30protected:
mtklein72c9faa2015-01-09 10:06:39 -080031 uint32_t onGetFlags() const SK_OVERRIDE {
reedd7127e72014-08-12 06:53:09 -070032 return kSkipTiled_Flag;
33 }
34
mtklein72c9faa2015-01-09 10:06:39 -080035 SkString onShortName() SK_OVERRIDE {
reedd7127e72014-08-12 06:53:09 -070036 return SkString("gpusamplerstress");
37 }
38
mtklein72c9faa2015-01-09 10:06:39 -080039 SkISize onISize() SK_OVERRIDE {
reedd7127e72014-08-12 06:53:09 -070040 return SkISize::Make(640, 480);
41 }
42
43 /**
44 * Create a red & green stripes on black texture
45 */
46 void createTexture() {
47 if (fTextureCreated) {
48 return;
49 }
50
51 static const int xSize = 16;
52 static const int ySize = 16;
53
54 fTexture.allocN32Pixels(xSize, ySize);
55 SkPMColor* addr = fTexture.getAddr32(0, 0);
56
57 for (int y = 0; y < ySize; ++y) {
58 for (int x = 0; x < xSize; ++x) {
59 addr[y*xSize+x] = SkPreMultiplyColor(SK_ColorBLACK);
60
61 if ((y % 5) == 0) {
62 addr[y*xSize+x] = SkPreMultiplyColor(SK_ColorRED);
63 }
64 if ((x % 7) == 0) {
65 addr[y*xSize+x] = SkPreMultiplyColor(SK_ColorGREEN);
66 }
67 }
68 }
69
70 fTextureCreated = true;
71 }
72
73 void createShader() {
bsalomon49f085d2014-09-05 13:34:00 -070074 if (fShader.get()) {
reedd7127e72014-08-12 06:53:09 -070075 return;
76 }
77
78 createTexture();
79
80 fShader.reset(SkShader::CreateBitmapShader(fTexture,
81 SkShader::kRepeat_TileMode,
82 SkShader::kRepeat_TileMode));
83 }
84
85 void createMaskFilter() {
bsalomon49f085d2014-09-05 13:34:00 -070086 if (fMaskFilter.get()) {
reedd7127e72014-08-12 06:53:09 -070087 return;
88 }
89
90 const SkScalar sigma = 1;
91 fMaskFilter.reset(SkBlurMaskFilter::Create(kNormal_SkBlurStyle, sigma));
92 }
93
mtklein72c9faa2015-01-09 10:06:39 -080094 void onDraw(SkCanvas* canvas) SK_OVERRIDE {
reedd7127e72014-08-12 06:53:09 -070095 createShader();
96 createMaskFilter();
97
98 canvas->save();
99
100 // draw a letter "M" with a green & red striped texture and a
101 // stipple mask with a round rect soft clip
102 SkPaint paint;
103 paint.setAntiAlias(true);
104 paint.setTextSize(72);
105 paint.setShader(fShader.get());
106 paint.setMaskFilter(fMaskFilter.get());
107
108 SkRect temp;
109 temp.set(SkIntToScalar(115),
110 SkIntToScalar(75),
111 SkIntToScalar(144),
112 SkIntToScalar(110));
113
114 SkPath path;
115 path.addRoundRect(temp, SkIntToScalar(5), SkIntToScalar(5));
116
117 canvas->clipPath(path, SkRegion::kReplace_Op, true); // AA is on
118
119 canvas->drawText("M", 1,
120 SkIntToScalar(100), SkIntToScalar(100),
121 paint);
122
123 canvas->restore();
124
125 // Now draw stroked versions of the "M" and the round rect so we can
126 // see what is going on
127 SkPaint paint2;
128 paint2.setColor(SK_ColorBLACK);
129 paint2.setAntiAlias(true);
130 paint2.setTextSize(72);
131 paint2.setStyle(SkPaint::kStroke_Style);
132 paint2.setStrokeWidth(1);
133 canvas->drawText("M", 1,
134 SkIntToScalar(100), SkIntToScalar(100),
135 paint2);
136
137 paint2.setColor(SK_ColorGRAY);
138
139 canvas->drawPath(path, paint2);
140 }
141
142private:
143 SkBitmap fTexture;
144 bool fTextureCreated;
145 SkAutoTUnref<SkShader> fShader;
146 SkAutoTUnref<SkMaskFilter> fMaskFilter;
147
148 typedef GM INHERITED;
149};
150
151//////////////////////////////////////////////////////////////////////////////
152
153static GM* MyFactory(void*) { return new SamplerStressGM; }
154static GMRegistry reg(MyFactory);
155
156}