Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Functions
savelayer.cpp File Reference
#include "gm/gm.h"
#include "include/core/SkBlendMode.h"
#include "include/core/SkCanvas.h"
#include "include/core/SkColor.h"
#include "include/core/SkColorSpace.h"
#include "include/core/SkFont.h"
#include "include/core/SkImage.h"
#include "include/core/SkImageFilter.h"
#include "include/core/SkImageInfo.h"
#include "include/core/SkMaskFilter.h"
#include "include/core/SkMatrix.h"
#include "include/core/SkPaint.h"
#include "include/core/SkPicture.h"
#include "include/core/SkPictureRecorder.h"
#include "include/core/SkPoint.h"
#include "include/core/SkRSXform.h"
#include "include/core/SkRect.h"
#include "include/core/SkRefCnt.h"
#include "include/core/SkScalar.h"
#include "include/core/SkShader.h"
#include "include/core/SkSize.h"
#include "include/core/SkString.h"
#include "include/core/SkSurface.h"
#include "include/core/SkTextBlob.h"
#include "include/core/SkTileMode.h"
#include "include/core/SkTypeface.h"
#include "include/core/SkTypes.h"
#include "include/core/SkVertices.h"
#include "include/effects/SkGradientShader.h"
#include "include/effects/SkImageFilters.h"
#include "include/effects/SkShaderMaskFilter.h"
#include "src/base/SkRandom.h"
#include "src/core/SkCanvasPriv.h"
#include "tools/DecodeUtils.h"
#include "tools/Resources.h"
#include "tools/ToolUtils.h"
#include "tools/fonts/FontToolUtils.h"
#include <string.h>
#include <initializer_list>

Go to the source code of this file.

Functions

 DEF_SIMPLE_GM (savelayer_initfromprev, canvas, 256, 256)
 
static void draw_cell (SkCanvas *canvas, sk_sp< SkTextBlob > blob, SkColor c, SkScalar w, SkScalar h, bool useDrawBehind)
 
static void draw_list (SkCanvas *canvas, sk_sp< SkTextBlob > blob, bool useDrawBehind)
 
 DEF_SIMPLE_GM (save_behind, canvas, 830, 670)
 
 DEF_SIMPLE_GM (savelayer_f16, canvas, 900, 300)
 
static void draw_atlas (SkCanvas *canvas, SkImage *image)
 
static void draw_vertices (SkCanvas *canvas, SkImage *image)
 
static void draw_points (SkCanvas *canvas, SkImage *image)
 
static void draw_image_set (SkCanvas *canvas, SkImage *image)
 
 DEF_SIMPLE_GM (skbug_14554, canvas, 310, 630)
 

Function Documentation

◆ DEF_SIMPLE_GM() [1/4]

DEF_SIMPLE_GM ( save_behind  ,
canvas  ,
830  ,
670   
)

Definition at line 128 of file savelayer.cpp.

128 {
130 font.setSize(30);
131
132 const char text[] = "This is a very long line of text";
133 auto blob = SkTextBlob::MakeFromText(text, strlen(text), font);
134
135 for (bool useDrawBehind : {false, true}) {
136 canvas->save();
137
138 draw_list(canvas, blob, useDrawBehind);
139 canvas->translate(0, 350);
140 canvas->saveLayer({0, 0, 400, 320}, nullptr);
141 draw_list(canvas, blob, useDrawBehind);
142 canvas->restore();
143
144 canvas->restore();
145 canvas->translate(430, 0);
146 }
147}
static sk_sp< SkTextBlob > MakeFromText(const void *text, size_t byteLength, const SkFont &font, SkTextEncoding encoding=SkTextEncoding::kUTF8)
std::u16string text
SkFont DefaultPortableFont()
font
Font Metadata and Metrics.
static void draw_list(SkCanvas *canvas, sk_sp< SkTextBlob > blob, bool useDrawBehind)

◆ DEF_SIMPLE_GM() [2/4]

DEF_SIMPLE_GM ( savelayer_f16  ,
canvas  ,
900  ,
300   
)

Definition at line 151 of file savelayer.cpp.

151 {
152 int n = 15;
153 SkRect r{0, 0, 300, 300};
155
157 paint.setShader(SkGradientShader::MakeSweep(r.centerX(), r.centerY(),
158 colors, nullptr, std::size(colors)));
159
160 canvas->drawOval(r, paint);
161
162 paint.setAlphaf(1.0f/n);
163 paint.setBlendMode(SkBlendMode::kPlus);
164
165 for (auto flags : {0, (int)SkCanvas::kF16ColorType}) {
166 canvas->translate(r.width(), 0);
167
170 canvas->saveLayer(rec);
171 for (int i = 0; i < n; ++i) {
172 canvas->drawOval(r, paint);
173 }
174 canvas->restore();
175 }
176}
@ kPlus
r = min(s + d, 1)
uint32_t SkColor
Definition SkColor.h:37
constexpr SkColor SK_ColorBLUE
Definition SkColor.h:135
constexpr SkColor SK_ColorRED
Definition SkColor.h:126
constexpr SkColor SK_ColorGREEN
Definition SkColor.h:131
Type::kYUV Type::kRGBA() int(0.7 *637)
@ kF16ColorType
Definition SkCanvas.h:674
static sk_sp< SkShader > MakeSweep(SkScalar cx, SkScalar cy, const SkColor colors[], const SkScalar pos[], int count, SkTileMode mode, SkScalar startAngle, SkScalar endAngle, uint32_t flags, const SkMatrix *localMatrix)
const Paint & paint
FlutterSemanticsFlag flags
PODArray< SkColor > colors
Definition SkRecords.h:276
SaveLayerFlags fSaveLayerFlags
Definition SkCanvas.h:763

◆ DEF_SIMPLE_GM() [3/4]

DEF_SIMPLE_GM ( savelayer_initfromprev  ,
canvas  ,
256  ,
256   
)

Definition at line 53 of file savelayer.cpp.

53 {
54 canvas->drawImage(ToolUtils::GetResourceAsImage("images/mandrill_256.png"), 0, 0);
55
58 paint.setBlendMode(SkBlendMode::kPlus);
60 rec.fPaint = &paint;
61 canvas->saveLayer(rec);
62 paint.setBlendMode(SkBlendMode::kClear);
63 canvas->drawCircle(128, 128, 96, paint);
64 canvas->restore();
65};
@ kClear
r = 0
@ kInitWithPrevious_SaveLayerFlag
initializes with previous contents
Definition SkCanvas.h:672
sk_sp< SkImage > GetResourceAsImage(const char *resource)
Definition DecodeUtils.h:25
const SkPaint * fPaint
Definition SkCanvas.h:743

◆ DEF_SIMPLE_GM() [4/4]

DEF_SIMPLE_GM ( skbug_14554  ,
canvas  ,
310  ,
630   
)

Definition at line 235 of file savelayer.cpp.

235 {
236 sk_sp<SkImage> image = ToolUtils::GetResourceAsImage("images/mandrill_128.png");
238
239 using DrawProc = void(*)(SkCanvas*, SkImage*);
240
242 canvas->save();
243 for (bool injectExtraOp : {false, true}) {
244 auto c = rec.beginRecording(SkRect::MakeWH(150, 150));
245 c->saveLayerAlphaf(nullptr, 0.6f);
246 proc(c, image.get());
247 // For the second draw of each test-case, we inject an extra (useless) operation, which
248 // inhibits the optimization and produces the correct result.
249 if (injectExtraOp) {
250 c->translate(1, 0);
251 }
252 c->restore();
253
254 auto pic = rec.finishRecordingAsPicture();
255
256 canvas->drawPicture(pic);
257 canvas->translate(160, 0);
258 }
259 canvas->restore();
260 canvas->translate(0, 160);
261 }
262}
const char *(* DrawProc)(const BezierRec *, int)
int saveLayerAlphaf(const SkRect *bounds, float alpha)
SkCanvas * beginRecording(const SkRect &bounds, sk_sp< SkBBoxHierarchy > bbh)
sk_sp< SkPicture > finishRecordingAsPicture()
T * get() const
Definition SkRefCnt.h:303
sk_sp< SkImage > image
Definition examples.cpp:29
static void draw_points(SkCanvas *canvas, SkImage *image)
static void draw_image_set(SkCanvas *canvas, SkImage *image)
static void draw_vertices(SkCanvas *canvas, SkImage *image)
static void draw_atlas(SkCanvas *canvas, SkImage *image)
static constexpr SkRect MakeWH(float w, float h)
Definition SkRect.h:609

◆ draw_atlas()

static void draw_atlas ( SkCanvas canvas,
SkImage image 
)
static

Definition at line 178 of file savelayer.cpp.

178 {
179 SkRSXform xforms[] = {{1, 0, 0, 0}, {1, 0, 50, 50}};
180 SkRect tex[] = {{0, 0, 100, 100}, {0, 0, 100, 100}};
181 SkColor colors[] = {0xffffffff, 0xffffffff};
183
184 canvas->drawAtlas(image,
185 xforms,
186 tex,
187 colors,
188 2,
191 nullptr,
192 &paint);
193}
@ kSrcIn
r = s * da
void drawAtlas(const SkImage *atlas, const SkRSXform xform[], const SkRect tex[], const SkColor colors[], int count, SkBlendMode mode, const SkSamplingOptions &sampling, const SkRect *cullRect, const SkPaint *paint)
PODArray< SkRSXform > xforms
Definition SkRecords.h:332

◆ draw_cell()

static void draw_cell ( SkCanvas canvas,
sk_sp< SkTextBlob blob,
SkColor  c,
SkScalar  w,
SkScalar  h,
bool  useDrawBehind 
)
static

Definition at line 67 of file savelayer.cpp.

68 {
70 SkPaint p;
71 p.setColor(c);
72 p.setBlendMode(SkBlendMode::kSrc);
73 canvas->drawRect(r, p);
74 p.setBlendMode(SkBlendMode::kSrcOver);
75
76 const SkScalar margin = 80;
77 r.fLeft = w - margin;
78
79 // save the behind image
80 SkDEBUGCODE(int sc0 =) canvas->getSaveCount();
81 SkDEBUGCODE(int sc1 =) SkCanvasPriv::SaveBehind(canvas, &r);
82 SkDEBUGCODE(int sc2 =) canvas->getSaveCount();
83 SkASSERT(sc0 == sc1);
84 SkASSERT(sc0 + 1 == sc2);
85
86 // draw the foreground (including over the 'behind' section)
87 p.setColor(SK_ColorBLACK);
88 canvas->drawTextBlob(blob, 10, 30, p);
89
90 // draw the treatment
91 const SkPoint pts[] = { {r.fLeft,0}, {r.fRight, 0} };
92 const SkColor colors[] = { 0x88000000, 0x0 };
93 auto sh = SkGradientShader::MakeLinear(pts, colors, nullptr, 2, SkTileMode::kClamp);
94 p.setShader(sh);
95 p.setBlendMode(SkBlendMode::kDstIn);
96
97 if (useDrawBehind) {
98 SkCanvasPriv::DrawBehind(canvas, p);
99 } else {
100 canvas->drawRect(r, p);
101 }
102
103 // this should restore the behind image
104 canvas->restore();
105 SkDEBUGCODE(int sc3 =) canvas->getSaveCount();
106 SkASSERT(sc3 == sc0);
107
108 // just outline where we expect the treatment to appear
109 p.reset();
110 p.setStyle(SkPaint::kStroke_Style);
111 p.setAlphaf(0.25f);
112}
m reset()
#define SkASSERT(cond)
Definition SkAssert.h:116
@ kDstIn
r = d * sa
@ kSrcOver
r = s + (1-sa)*d
constexpr SkColor SK_ColorBLACK
Definition SkColor.h:103
#define SkDEBUGCODE(...)
Definition SkDebug.h:23
static void DrawBehind(SkCanvas *canvas, const SkPaint &paint)
void drawRect(const SkRect &rect, const SkPaint &paint)
void restore()
Definition SkCanvas.cpp:465
static sk_sp< SkShader > MakeLinear(const SkPoint pts[2], const SkColor colors[], const SkScalar pos[], int count, SkTileMode mode, uint32_t flags=0, const SkMatrix *localMatrix=nullptr)
float SkScalar
Definition extension.cpp:12
SkScalar w
SkScalar h
SkScalar fLeft
smaller x-axis bounds
Definition extension.cpp:14

◆ draw_image_set()

static void draw_image_set ( SkCanvas canvas,
SkImage image 
)
static

Definition at line 216 of file savelayer.cpp.

216 {
217 SkRect r = SkRect::MakeWH(100, 100);
218 SkCanvas::ImageSetEntry entries[] = {
222 };
223
226 entries, 2, nullptr, nullptr, SkFilterMode::kNearest, &paint);
227}
sk_sp< T > sk_ref_sp(T *obj)
Definition SkRefCnt.h:381
void experimental_DrawEdgeAAImageSet(const ImageSetEntry imageSet[], int cnt, const SkPoint dstClips[], const SkMatrix preViewMatrices[], const SkSamplingOptions &, const SkPaint *paint=nullptr, SrcRectConstraint constraint=kStrict_SrcRectConstraint)
@ kNone_QuadAAFlags
Definition SkCanvas.h:1664
constexpr SkRect makeOffset(float dx, float dy) const
Definition SkRect.h:965

◆ draw_list()

static void draw_list ( SkCanvas canvas,
sk_sp< SkTextBlob blob,
bool  useDrawBehind 
)
static

Definition at line 114 of file savelayer.cpp.

114 {
115 SkAutoCanvasRestore acr(canvas, true);
116
117 SkRandom rand;
118 SkScalar w = 400;
119 SkScalar h = 40;
120 for (int i = 0; i < 8; ++i) {
121 SkColor c = rand.nextU(); // ensure we're opaque
122 c = (c & 0xFFFFFF) | 0x80000000;
123 draw_cell(canvas, blob, c, w, h, useDrawBehind);
124 canvas->translate(0, h);
125 }
126}
void translate(SkScalar dx, SkScalar dy)
uint32_t nextU()
Definition SkRandom.h:42
static void draw_cell(SkCanvas *canvas, sk_sp< SkTextBlob > blob, SkColor c, SkScalar w, SkScalar h, bool useDrawBehind)
Definition savelayer.cpp:67

◆ draw_points()

static void draw_points ( SkCanvas canvas,
SkImage image 
)
static

Definition at line 206 of file savelayer.cpp.

206 {
207 SkPoint pts[] = {{50, 50}, {75, 75}};
210 paint.setStrokeWidth(100);
211 paint.setStrokeCap(SkPaint::kSquare_Cap);
212
214}
void drawPoints(PointMode mode, size_t count, const SkPoint pts[], const SkPaint &paint)
@ kPoints_PointMode
draw each point separately
Definition SkCanvas.h:1241
sk_sp< SkShader > makeShader(SkTileMode tmx, SkTileMode tmy, const SkSamplingOptions &, const SkMatrix *localMatrix=nullptr) const
Definition SkImage.cpp:179
@ kSquare_Cap
adds square
Definition SkPaint.h:336

◆ draw_vertices()

static void draw_vertices ( SkCanvas canvas,
SkImage image 
)
static

Definition at line 195 of file savelayer.cpp.

195 {
196 SkPoint pts[] = {{0, 0}, {0, 100}, {100, 100}, {100, 0}, {100, 100}, {0, 100}};
197 sk_sp<SkVertices> verts =
199
202
203 canvas->drawVertices(verts, SkBlendMode::kSrc, paint);
204}
void drawVertices(const SkVertices *vertices, SkBlendMode mode, const SkPaint &paint)
static sk_sp< SkVertices > MakeCopy(VertexMode mode, int vertexCount, const SkPoint positions[], const SkPoint texs[], const SkColor colors[], int indexCount, const uint16_t indices[])
@ kTriangles_VertexMode
Definition SkVertices.h:31