Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Classes | Namespaces | Functions
localmatrixshader.cpp File Reference
#include "gm/gm.h"
#include "include/core/SkBitmap.h"
#include "include/core/SkBlendMode.h"
#include "include/core/SkCanvas.h"
#include "include/core/SkColor.h"
#include "include/core/SkImage.h"
#include "include/core/SkImageInfo.h"
#include "include/core/SkMatrix.h"
#include "include/core/SkPaint.h"
#include "include/core/SkRect.h"
#include "include/core/SkRefCnt.h"
#include "include/core/SkScalar.h"
#include "include/core/SkShader.h"
#include "include/core/SkSurface.h"
#include "include/core/SkTypes.h"
#include "include/effects/SkGradientShader.h"
#include "tools/DecodeUtils.h"
#include "tools/GpuToolUtils.h"
#include "tools/Resources.h"
#include "tools/ToolUtils.h"
#include "tools/timer/TimeUtils.h"

Go to the source code of this file.

Classes

class  skiagm::LocalMatrixOrder
 

Namespaces

namespace  skiagm
 

Functions

static sk_sp< SkImagemake_image (SkCanvas *rootCanvas)
 
 DEF_SIMPLE_GM (localmatrixshader_nested, canvas, 450, 1200)
 
 DEF_SIMPLE_GM (localmatrixshader_persp, canvas, 542, 266)
 

Function Documentation

◆ DEF_SIMPLE_GM() [1/2]

DEF_SIMPLE_GM ( localmatrixshader_nested  ,
canvas  ,
450  ,
1200   
)

Definition at line 50 of file localmatrixshader.cpp.

50 {
51 auto image = make_image(canvas);
52 if (!image) {
53 return;
54 }
55
56 using FactoryT = sk_sp<SkShader> (*)(const sk_sp<SkImage>&,
57 const SkMatrix& inner,
58 const SkMatrix& outer);
59 static const FactoryT gFactories[] = {
60 // SkLocalMatrixShader(SkImageShader(inner), outer)
61 [](const sk_sp<SkImage>& img, const SkMatrix& inner, const SkMatrix& outer) {
62 return img->makeShader(SkSamplingOptions(), inner)->makeWithLocalMatrix(outer);
63 },
64
65 // SkLocalMatrixShader(SkLocalMatrixShader(SkImageShader(I), inner), outer)
66 [](const sk_sp<SkImage>& img, const SkMatrix& inner, const SkMatrix& outer) {
67 return img->makeShader(SkSamplingOptions())->makeWithLocalMatrix(inner)->makeWithLocalMatrix(outer);
68 },
69
70 // SkLocalMatrixShader(SkComposeShader(SkImageShader(inner)), outer)
71 [](const sk_sp<SkImage>& img, const SkMatrix& inner, const SkMatrix& outer) {
72 return SkShaders::Blend(SkBlendMode::kSrcOver,
73 SkShaders::Color(SK_ColorTRANSPARENT),
74 img->makeShader(SkSamplingOptions(), inner))
75 ->makeWithLocalMatrix(outer);
76 },
77
78 // SkLocalMatrixShader(SkComposeShader(SkLocalMatrixShader(SkImageShader(I), inner)), outer)
79 [](const sk_sp<SkImage>& img, const SkMatrix& inner, const SkMatrix& outer) {
80 return SkShaders::Blend(SkBlendMode::kSrcOver,
81 SkShaders::Color(SK_ColorTRANSPARENT),
82 img->makeShader(SkSamplingOptions())->makeWithLocalMatrix(inner))
83 ->makeWithLocalMatrix(outer);
84 },
85 };
86
87 static const auto outer = SkMatrix::Scale(2, 2),
88 inner = SkMatrix::Translate(20, 20);
89
90 SkPaint border;
91 border.setAntiAlias(true);
93
94 auto rect = SkRect::Make(image->bounds());
95 SkAssertResult(SkMatrix::Concat(outer, inner).mapRect(&rect));
96
97 const auto drawColumn = [&]() {
98 SkAutoCanvasRestore acr(canvas, true);
99 for (const auto& f : gFactories) {
100 SkPaint p;
101 p.setShader(f(image, inner, outer));
102
103 canvas->drawRect(rect, p);
104 canvas->drawRect(rect, border);
105
106 canvas->translate(0, rect.height() * 1.5f);
107 }
108 };
109
110 drawColumn();
111
112 {
113 SkAutoCanvasRestore acr(canvas, true);
114 canvas->translate(0, rect.height() * std::size(gFactories) * 1.5f);
115 drawColumn();
116 }
117
118 canvas->translate(rect.width() * 1.5f, 0);
119 canvas->scale(2, 2);
120 drawColumn();
121}
#define SkAssertResult(cond)
Definition SkAssert.h:123
@ kSrcOver
r = s + (1-sa)*d
constexpr SkColor SK_ColorTRANSPARENT
Definition SkColor.h:99
SkIRect bounds() const
Definition SkImage.h:303
static SkMatrix Scale(SkScalar sx, SkScalar sy)
Definition SkMatrix.h:75
static SkMatrix Translate(SkScalar dx, SkScalar dy)
Definition SkMatrix.h:91
static SkMatrix Concat(const SkMatrix &a, const SkMatrix &b)
Definition SkMatrix.h:1775
void setStyle(Style style)
Definition SkPaint.cpp:105
void setAntiAlias(bool aa)
Definition SkPaint.h:170
@ kStroke_Style
set to stroke geometry
Definition SkPaint.h:194
sk_sp< SkShader > makeWithLocalMatrix(const SkMatrix &) const
Definition SkShader.cpp:26
sk_sp< SkImage > image
Definition examples.cpp:29
static sk_sp< SkImage > make_image()
Definition mipmap.cpp:21
sk_sp< SkBlender > blender SkRect rect
Definition SkRecords.h:350
static SkRect Make(const SkISize &size)
Definition SkRect.h:669

◆ DEF_SIMPLE_GM() [2/2]

DEF_SIMPLE_GM ( localmatrixshader_persp  ,
canvas  ,
542  ,
266   
)

Definition at line 123 of file localmatrixshader.cpp.

123 {
124 auto image = ToolUtils::GetResourceAsImage("images/yellow_rose.png");
125
126 SkBitmap downsized;
127 downsized.allocPixels(image->imageInfo().makeWH(128, 128));
129 image = downsized.asImage();
130 SkRect imgRect = SkRect::MakeIWH(image->width(), image->height());
131
132 // scale matrix
133 SkMatrix scale = SkMatrix::Scale(1.f / 5.f, 1.f / 5.f);
134
135 // perspective matrix
136 SkPoint src[4];
137 imgRect.toQuad(src);
138 SkPoint dst[4] = {{0, 10.f},
139 {image->width() + 28.f, -100.f},
140 {image->width() - 28.f, image->height() + 100.f},
141 {0.f, image->height() - 10.f}};
142 SkMatrix persp;
143 SkAssertResult(persp.setPolyToPoly(src, dst, 4));
144
145 // combined persp * scale
146 SkMatrix perspScale = SkMatrix::Concat(persp, scale);
147
148 auto draw = [&](sk_sp<SkShader> shader, bool applyPerspToCTM) {
149 canvas->save();
150 canvas->clipRect(imgRect);
151 if (applyPerspToCTM) {
152 canvas->concat(persp);
153 }
154 SkPaint imgShaderPaint;
155 imgShaderPaint.setShader(std::move(shader));
156 canvas->drawPaint(imgShaderPaint);
157 canvas->restore();
158
159 canvas->translate(10.f + image->width(), 0.f); // advance
160 };
161
162 // SkImageShader
163 canvas->save();
164 // 4 variants that all attempt to apply sample at persp * scale w/ an image shader
165 // 1. scale provided to SkImage::makeShader(...) but drawn with persp
168 draw(s1, true);
169
170 // 2. scale provided to SkImage::makeShader, then wrapped in persp makeWithLocalMatrix
171 // These post-concat, so it ends up as persp * scale.
174 ->makeWithLocalMatrix(persp);
175 draw(s2, false);
176
177 // 3. Providing pre-computed persp*scale to SkImage::makeShader()
179 SkSamplingOptions(), &perspScale);
180 draw(s3, false);
181
182 // 4. Providing pre-computed persp*scale to makeWithLocalMatrix
184 ->makeWithLocalMatrix(perspScale);
185 draw(s4, false);
186 canvas->restore();
187
188 canvas->translate(0.f, 10.f + image->height()); // advance to next row
189
190 // SkGradientShader
191 const SkColor kGradColors[] = { SK_ColorBLACK, SK_ColorTRANSPARENT };
192 canvas->save();
193 // 1. scale provided to Make, drawn with persp
194 auto g1 = SkGradientShader::MakeRadial({imgRect.centerX(), imgRect.centerY()},
195 imgRect.width() / 2.f, kGradColors, nullptr, 2,
197 draw(g1, true);
198
199 // 2. scale provided to Make, then wrapped with makeWithLocalMatrix (post-concat as before).
200 auto g2 = SkGradientShader::MakeRadial({imgRect.centerX(), imgRect.centerY()},
201 imgRect.width() / 2.f, kGradColors, nullptr, 2,
203 ->makeWithLocalMatrix(persp);
204 draw(g2, false);
205
206 // 3. Provide per-computed persp*scale to Make
207 auto g3 = SkGradientShader::MakeRadial({imgRect.centerX(), imgRect.centerY()},
208 imgRect.width() / 2.f, kGradColors, nullptr, 2,
209 SkTileMode::kRepeat, 0, &perspScale);
210 draw(g3, false);
211
212 // 4. Providing pre-computed persp*scale to makeWithLocalMatrix
213 auto g4 = SkGradientShader::MakeRadial({imgRect.centerX(), imgRect.centerY()},
214 imgRect.width() / 2.f, kGradColors, nullptr, 2,
216 ->makeWithLocalMatrix(perspScale);
217 draw(g4, false);
218 canvas->restore();
219}
uint32_t SkColor
Definition SkColor.h:37
constexpr SkColor SK_ColorBLACK
Definition SkColor.h:103
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void allocPixels(const SkImageInfo &info, size_t rowBytes)
Definition SkBitmap.cpp:258
sk_sp< SkImage > asImage() const
Definition SkBitmap.cpp:645
const SkPixmap & pixmap() const
Definition SkBitmap.h:133
static sk_sp< SkShader > MakeRadial(const SkPoint &center, SkScalar radius, const SkColor colors[], const SkScalar pos[], int count, SkTileMode mode, uint32_t flags=0, const SkMatrix *localMatrix=nullptr)
const SkImageInfo & imageInfo() const
Definition SkImage.h:279
int width() const
Definition SkImage.h:285
sk_sp< SkShader > makeShader(SkTileMode tmx, SkTileMode tmy, const SkSamplingOptions &, const SkMatrix *localMatrix=nullptr) const
Definition SkImage.cpp:179
int height() const
Definition SkImage.h:291
bool scalePixels(const SkPixmap &dst, const SkSamplingOptions &, CachingHint cachingHint=kAllow_CachingHint) const
Definition SkImage.cpp:127
bool setPolyToPoly(const SkPoint src[], const SkPoint dst[], int count)
void setShader(sk_sp< SkShader > shader)
sk_sp< SkImage > GetResourceAsImage(const char *resource)
Definition DecodeUtils.h:25
dst
Definition cp.py:12
const Scalar scale
SkImageInfo makeWH(int newWidth, int newHeight) const
void toQuad(SkPoint quad[4]) const
Definition SkRect.cpp:50
static SkRect MakeIWH(int w, int h)
Definition SkRect.h:623
constexpr float centerX() const
Definition SkRect.h:776
constexpr float centerY() const
Definition SkRect.h:785
constexpr float width() const
Definition SkRect.h:762

◆ make_image()

static sk_sp< SkImage > make_image ( SkCanvas rootCanvas)
static

Definition at line 30 of file localmatrixshader.cpp.

30 {
31 static constexpr SkScalar kSize = 50;
34
35 SkPaint p;
36 p.setAntiAlias(true);
37 p.setColor(SK_ColorGREEN);
38
39 surface->getCanvas()->drawCircle(kSize / 2, kSize / 2, kSize / 2, p);
40
41 p.setStyle(SkPaint::kStroke_Style);
42 p.setColor(SK_ColorRED);
43 surface->getCanvas()->drawLine(kSize * .25f, kSize * .50f, kSize * .75f, kSize * .50f, p);
44 surface->getCanvas()->drawLine(kSize * .50f, kSize * .25f, kSize * .50f, kSize * .75f, p);
45
46 sk_sp<SkImage> img = surface->makeImageSnapshot();
47 return ToolUtils::MakeTextureImage(rootCanvas, std::move(img));
48}
static void info(const char *fmt,...) SK_PRINTF_LIKE(1
Definition DM.cpp:213
constexpr SkColor SK_ColorRED
Definition SkColor.h:126
constexpr SkColor SK_ColorGREEN
Definition SkColor.h:131
static constexpr int kSize
VkSurfaceKHR surface
Definition main.cc:49
float SkScalar
Definition extension.cpp:12
SK_API sk_sp< SkSurface > Raster(const SkImageInfo &imageInfo, size_t rowBytes, const SkSurfaceProps *surfaceProps)
sk_sp< SkImage > MakeTextureImage(SkCanvas *canvas, sk_sp< SkImage > orig)
static SkImageInfo MakeN32Premul(int width, int height)