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 "src/gpu/geometry/GrShape.h"
9
10 #include <utility>
11
operator =(const GrShape & that)12 GrShape& GrShape::operator=(const GrShape& that) {
13 fStyle = that.fStyle;
14 this->changeType(that.fType, Type::kPath == that.fType ? &that.path() : nullptr);
15 switch (fType) {
16 case Type::kEmpty:
17 break;
18 case Type::kInvertedEmpty:
19 break;
20 case Type::kRRect:
21 fRRectData = that.fRRectData;
22 break;
23 case Type::kArc:
24 fArcData = that.fArcData;
25 break;
26 case Type::kLine:
27 fLineData = that.fLineData;
28 break;
29 case Type::kPath:
30 fPathData.fGenID = that.fPathData.fGenID;
31 break;
32 }
33 fInheritedKey.reset(that.fInheritedKey.count());
34 sk_careful_memcpy(fInheritedKey.get(), that.fInheritedKey.get(),
35 sizeof(uint32_t) * fInheritedKey.count());
36 if (that.fInheritedPathForListeners.isValid()) {
37 fInheritedPathForListeners.set(*that.fInheritedPathForListeners.get());
38 } else {
39 fInheritedPathForListeners.reset();
40 }
41 return *this;
42 }
43
flip_inversion(bool originalIsInverted,GrShape::FillInversion inversion)44 static bool flip_inversion(bool originalIsInverted, GrShape::FillInversion inversion) {
45 switch (inversion) {
46 case GrShape::FillInversion::kPreserve:
47 return false;
48 case GrShape::FillInversion::kFlip:
49 return true;
50 case GrShape::FillInversion::kForceInverted:
51 return !originalIsInverted;
52 case GrShape::FillInversion::kForceNoninverted:
53 return originalIsInverted;
54 }
55 return false;
56 }
57
is_inverted(bool originalIsInverted,GrShape::FillInversion inversion)58 static bool is_inverted(bool originalIsInverted, GrShape::FillInversion inversion) {
59 switch (inversion) {
60 case GrShape::FillInversion::kPreserve:
61 return originalIsInverted;
62 case GrShape::FillInversion::kFlip:
63 return !originalIsInverted;
64 case GrShape::FillInversion::kForceInverted:
65 return true;
66 case GrShape::FillInversion::kForceNoninverted:
67 return false;
68 }
69 return false;
70 }
71
MakeFilled(const GrShape & original,FillInversion inversion)72 GrShape GrShape::MakeFilled(const GrShape& original, FillInversion inversion) {
73 if (original.style().isSimpleFill() && !flip_inversion(original.inverseFilled(), inversion)) {
74 // By returning the original rather than falling through we can preserve any inherited style
75 // key. Otherwise, we wipe it out below since the style change invalidates it.
76 return original;
77 }
78 GrShape result;
79 if (original.fInheritedPathForListeners.isValid()) {
80 result.fInheritedPathForListeners.set(*original.fInheritedPathForListeners.get());
81 }
82 switch (original.fType) {
83 case Type::kRRect:
84 result.fType = original.fType;
85 result.fRRectData.fRRect = original.fRRectData.fRRect;
86 result.fRRectData.fDir = kDefaultRRectDir;
87 result.fRRectData.fStart = kDefaultRRectStart;
88 result.fRRectData.fInverted = is_inverted(original.fRRectData.fInverted, inversion);
89 break;
90 case Type::kArc:
91 result.fType = original.fType;
92 result.fArcData.fOval = original.fArcData.fOval;
93 result.fArcData.fStartAngleDegrees = original.fArcData.fStartAngleDegrees;
94 result.fArcData.fSweepAngleDegrees = original.fArcData.fSweepAngleDegrees;
95 result.fArcData.fUseCenter = original.fArcData.fUseCenter;
96 result.fArcData.fInverted = is_inverted(original.fArcData.fInverted, inversion);
97 break;
98 case Type::kLine:
99 // Lines don't fill.
100 if (is_inverted(original.fLineData.fInverted, inversion)) {
101 result.fType = Type::kInvertedEmpty;
102 } else {
103 result.fType = Type::kEmpty;
104 }
105 break;
106 case Type::kEmpty:
107 result.fType = is_inverted(false, inversion) ? Type::kInvertedEmpty : Type::kEmpty;
108 break;
109 case Type::kInvertedEmpty:
110 result.fType = is_inverted(true, inversion) ? Type::kInvertedEmpty : Type::kEmpty;
111 break;
112 case Type::kPath:
113 result.initType(Type::kPath, &original.fPathData.fPath);
114 result.fPathData.fGenID = original.fPathData.fGenID;
115 if (flip_inversion(original.fPathData.fPath.isInverseFillType(), inversion)) {
116 result.fPathData.fPath.toggleInverseFillType();
117 }
118 if (!original.style().isSimpleFill()) {
119 // Going from a non-filled style to fill may allow additional simplifications (e.g.
120 // closing an open rect that wasn't closed in the original shape because it had
121 // stroke style).
122 result.attemptToSimplifyPath();
123 }
124 break;
125 }
126 // We don't copy the inherited key since it can contain path effect information that we just
127 // stripped.
128 return result;
129 }
130
bounds() const131 SkRect GrShape::bounds() const {
132 // Bounds where left == bottom or top == right can indicate a line or point shape. We return
133 // inverted bounds for a truly empty shape.
134 static constexpr SkRect kInverted = SkRect::MakeLTRB(1, 1, -1, -1);
135 switch (fType) {
136 case Type::kEmpty:
137 return kInverted;
138 case Type::kInvertedEmpty:
139 return kInverted;
140 case Type::kLine: {
141 SkRect bounds;
142 if (fLineData.fPts[0].fX < fLineData.fPts[1].fX) {
143 bounds.fLeft = fLineData.fPts[0].fX;
144 bounds.fRight = fLineData.fPts[1].fX;
145 } else {
146 bounds.fLeft = fLineData.fPts[1].fX;
147 bounds.fRight = fLineData.fPts[0].fX;
148 }
149 if (fLineData.fPts[0].fY < fLineData.fPts[1].fY) {
150 bounds.fTop = fLineData.fPts[0].fY;
151 bounds.fBottom = fLineData.fPts[1].fY;
152 } else {
153 bounds.fTop = fLineData.fPts[1].fY;
154 bounds.fBottom = fLineData.fPts[0].fY;
155 }
156 return bounds;
157 }
158 case Type::kRRect:
159 return fRRectData.fRRect.getBounds();
160 case Type::kArc:
161 // Could make this less conservative by looking at angles.
162 return fArcData.fOval;
163 case Type::kPath:
164 return this->path().getBounds();
165 }
166 SK_ABORT("Unknown shape type");
167 }
168
styledBounds() const169 SkRect GrShape::styledBounds() const {
170 if (this->isEmpty() && !fStyle.hasNonDashPathEffect()) {
171 return SkRect::MakeEmpty();
172 }
173
174 SkRect bounds;
175 fStyle.adjustBounds(&bounds, this->bounds());
176 return bounds;
177 }
178
179 // If the path is small enough to be keyed from its data this returns key length, otherwise -1.
path_key_from_data_size(const SkPath & path)180 static int path_key_from_data_size(const SkPath& path) {
181 const int verbCnt = path.countVerbs();
182 if (verbCnt > GrShape::kMaxKeyFromDataVerbCnt) {
183 return -1;
184 }
185 const int pointCnt = path.countPoints();
186 const int conicWeightCnt = SkPathPriv::ConicWeightCnt(path);
187
188 GR_STATIC_ASSERT(sizeof(SkPoint) == 2 * sizeof(uint32_t));
189 GR_STATIC_ASSERT(sizeof(SkScalar) == sizeof(uint32_t));
190 // 2 is for the verb cnt and a fill type. Each verb is a byte but we'll pad the verb data out to
191 // a uint32_t length.
192 return 2 + (SkAlign4(verbCnt) >> 2) + 2 * pointCnt + conicWeightCnt;
193 }
194
195 // Writes the path data key into the passed pointer.
write_path_key_from_data(const SkPath & path,uint32_t * origKey)196 static void write_path_key_from_data(const SkPath& path, uint32_t* origKey) {
197 uint32_t* key = origKey;
198 // The check below should take care of negative values casted positive.
199 const int verbCnt = path.countVerbs();
200 const int pointCnt = path.countPoints();
201 const int conicWeightCnt = SkPathPriv::ConicWeightCnt(path);
202 SkASSERT(verbCnt <= GrShape::kMaxKeyFromDataVerbCnt);
203 SkASSERT(pointCnt && verbCnt);
204 *key++ = path.getFillType();
205 *key++ = verbCnt;
206 memcpy(key, SkPathPriv::VerbData(path), verbCnt * sizeof(uint8_t));
207 int verbKeySize = SkAlign4(verbCnt);
208 // pad out to uint32_t alignment using value that will stand out when debugging.
209 uint8_t* pad = reinterpret_cast<uint8_t*>(key)+ verbCnt;
210 memset(pad, 0xDE, verbKeySize - verbCnt);
211 key += verbKeySize >> 2;
212
213 memcpy(key, SkPathPriv::PointData(path), sizeof(SkPoint) * pointCnt);
214 GR_STATIC_ASSERT(sizeof(SkPoint) == 2 * sizeof(uint32_t));
215 key += 2 * pointCnt;
216 sk_careful_memcpy(key, SkPathPriv::ConicWeightData(path), sizeof(SkScalar) * conicWeightCnt);
217 GR_STATIC_ASSERT(sizeof(SkScalar) == sizeof(uint32_t));
218 SkDEBUGCODE(key += conicWeightCnt);
219 SkASSERT(key - origKey == path_key_from_data_size(path));
220 }
221
unstyledKeySize() const222 int GrShape::unstyledKeySize() const {
223 if (fInheritedKey.count()) {
224 return fInheritedKey.count();
225 }
226 switch (fType) {
227 case Type::kEmpty:
228 return 1;
229 case Type::kInvertedEmpty:
230 return 1;
231 case Type::kRRect:
232 SkASSERT(!fInheritedKey.count());
233 GR_STATIC_ASSERT(0 == SkRRect::kSizeInMemory % sizeof(uint32_t));
234 // + 1 for the direction, start index, and inverseness.
235 return SkRRect::kSizeInMemory / sizeof(uint32_t) + 1;
236 case Type::kArc:
237 SkASSERT(!fInheritedKey.count());
238 GR_STATIC_ASSERT(0 == sizeof(fArcData) % sizeof(uint32_t));
239 return sizeof(fArcData) / sizeof(uint32_t);
240 case Type::kLine:
241 GR_STATIC_ASSERT(2 * sizeof(uint32_t) == sizeof(SkPoint));
242 // 4 for the end points and 1 for the inverseness
243 return 5;
244 case Type::kPath: {
245 if (0 == fPathData.fGenID) {
246 return -1;
247 }
248 int dataKeySize = path_key_from_data_size(fPathData.fPath);
249 if (dataKeySize >= 0) {
250 return dataKeySize;
251 }
252 // The key is the path ID and fill type.
253 return 2;
254 }
255 }
256 SK_ABORT("Should never get here.");
257 }
258
writeUnstyledKey(uint32_t * key) const259 void GrShape::writeUnstyledKey(uint32_t* key) const {
260 SkASSERT(this->unstyledKeySize());
261 SkDEBUGCODE(uint32_t* origKey = key;)
262 if (fInheritedKey.count()) {
263 memcpy(key, fInheritedKey.get(), sizeof(uint32_t) * fInheritedKey.count());
264 SkDEBUGCODE(key += fInheritedKey.count();)
265 } else {
266 switch (fType) {
267 case Type::kEmpty:
268 *key++ = 1;
269 break;
270 case Type::kInvertedEmpty:
271 *key++ = 2;
272 break;
273 case Type::kRRect:
274 fRRectData.fRRect.writeToMemory(key);
275 key += SkRRect::kSizeInMemory / sizeof(uint32_t);
276 *key = (fRRectData.fDir == SkPath::kCCW_Direction) ? (1 << 31) : 0;
277 *key |= fRRectData.fInverted ? (1 << 30) : 0;
278 *key++ |= fRRectData.fStart;
279 SkASSERT(fRRectData.fStart < 8);
280 break;
281 case Type::kArc:
282 memcpy(key, &fArcData, sizeof(fArcData));
283 key += sizeof(fArcData) / sizeof(uint32_t);
284 break;
285 case Type::kLine:
286 memcpy(key, fLineData.fPts, 2 * sizeof(SkPoint));
287 key += 4;
288 *key++ = fLineData.fInverted ? 1 : 0;
289 break;
290 case Type::kPath: {
291 SkASSERT(fPathData.fGenID);
292 int dataKeySize = path_key_from_data_size(fPathData.fPath);
293 if (dataKeySize >= 0) {
294 write_path_key_from_data(fPathData.fPath, key);
295 return;
296 }
297 *key++ = fPathData.fGenID;
298 // We could canonicalize the fill rule for paths that don't differentiate between
299 // even/odd or winding fill (e.g. convex).
300 *key++ = this->path().getFillType();
301 break;
302 }
303 }
304 }
305 SkASSERT(key - origKey == this->unstyledKeySize());
306 }
307
setInheritedKey(const GrShape & parent,GrStyle::Apply apply,SkScalar scale)308 void GrShape::setInheritedKey(const GrShape &parent, GrStyle::Apply apply, SkScalar scale) {
309 SkASSERT(!fInheritedKey.count());
310 // If the output shape turns out to be simple, then we will just use its geometric key
311 if (Type::kPath == fType) {
312 // We want ApplyFullStyle(ApplyPathEffect(shape)) to have the same key as
313 // ApplyFullStyle(shape).
314 // The full key is structured as (geo,path_effect,stroke).
315 // If we do ApplyPathEffect we get geo,path_effect as the inherited key. If we then
316 // do ApplyFullStyle we'll memcpy geo,path_effect into the new inherited key
317 // and then append the style key (which should now be stroke only) at the end.
318 int parentCnt = parent.fInheritedKey.count();
319 bool useParentGeoKey = !parentCnt;
320 if (useParentGeoKey) {
321 parentCnt = parent.unstyledKeySize();
322 if (parentCnt < 0) {
323 // The parent's geometry has no key so we will have no key.
324 fPathData.fGenID = 0;
325 return;
326 }
327 }
328 uint32_t styleKeyFlags = 0;
329 if (parent.knownToBeClosed()) {
330 styleKeyFlags |= GrStyle::kClosed_KeyFlag;
331 }
332 if (parent.asLine(nullptr, nullptr)) {
333 styleKeyFlags |= GrStyle::kNoJoins_KeyFlag;
334 }
335 int styleCnt = GrStyle::KeySize(parent.fStyle, apply, styleKeyFlags);
336 if (styleCnt < 0) {
337 // The style doesn't allow a key, set the path gen ID to 0 so that we fail when
338 // we try to get a key for the shape.
339 fPathData.fGenID = 0;
340 return;
341 }
342 fInheritedKey.reset(parentCnt + styleCnt);
343 if (useParentGeoKey) {
344 // This will be the geo key.
345 parent.writeUnstyledKey(fInheritedKey.get());
346 } else {
347 // This should be (geo,path_effect).
348 memcpy(fInheritedKey.get(), parent.fInheritedKey.get(),
349 parentCnt * sizeof(uint32_t));
350 }
351 // Now turn (geo,path_effect) or (geo) into (geo,path_effect,stroke)
352 GrStyle::WriteKey(fInheritedKey.get() + parentCnt, parent.fStyle, apply, scale,
353 styleKeyFlags);
354 }
355 }
356
originalPathForListeners() const357 const SkPath* GrShape::originalPathForListeners() const {
358 if (fInheritedPathForListeners.isValid()) {
359 return fInheritedPathForListeners.get();
360 } else if (Type::kPath == fType && !fPathData.fPath.isVolatile()) {
361 return &fPathData.fPath;
362 }
363 return nullptr;
364 }
365
addGenIDChangeListener(sk_sp<SkPathRef::GenIDChangeListener> listener) const366 void GrShape::addGenIDChangeListener(sk_sp<SkPathRef::GenIDChangeListener> listener) const {
367 if (const auto* lp = this->originalPathForListeners()) {
368 SkPathPriv::AddGenIDChangeListener(*lp, std::move(listener));
369 }
370 }
371
MakeArc(const SkRect & oval,SkScalar startAngleDegrees,SkScalar sweepAngleDegrees,bool useCenter,const GrStyle & style)372 GrShape GrShape::MakeArc(const SkRect& oval, SkScalar startAngleDegrees, SkScalar sweepAngleDegrees,
373 bool useCenter, const GrStyle& style) {
374 GrShape result;
375 result.changeType(Type::kArc);
376 result.fArcData.fOval = oval;
377 result.fArcData.fStartAngleDegrees = startAngleDegrees;
378 result.fArcData.fSweepAngleDegrees = sweepAngleDegrees;
379 result.fArcData.fUseCenter = useCenter;
380 result.fArcData.fInverted = false;
381 result.fStyle = style;
382 result.attemptToSimplifyArc();
383 return result;
384 }
385
GrShape(const GrShape & that)386 GrShape::GrShape(const GrShape& that) : fStyle(that.fStyle) {
387 const SkPath* thatPath = Type::kPath == that.fType ? &that.fPathData.fPath : nullptr;
388 this->initType(that.fType, thatPath);
389 switch (fType) {
390 case Type::kEmpty:
391 break;
392 case Type::kInvertedEmpty:
393 break;
394 case Type::kRRect:
395 fRRectData = that.fRRectData;
396 break;
397 case Type::kArc:
398 fArcData = that.fArcData;
399 break;
400 case Type::kLine:
401 fLineData = that.fLineData;
402 break;
403 case Type::kPath:
404 fPathData.fGenID = that.fPathData.fGenID;
405 break;
406 }
407 fInheritedKey.reset(that.fInheritedKey.count());
408 sk_careful_memcpy(fInheritedKey.get(), that.fInheritedKey.get(),
409 sizeof(uint32_t) * fInheritedKey.count());
410 if (that.fInheritedPathForListeners.isValid()) {
411 fInheritedPathForListeners.set(*that.fInheritedPathForListeners.get());
412 }
413 }
414
GrShape(const GrShape & parent,GrStyle::Apply apply,SkScalar scale)415 GrShape::GrShape(const GrShape& parent, GrStyle::Apply apply, SkScalar scale) {
416 // TODO: Add some quantization of scale for better cache performance here or leave that up
417 // to caller?
418 // TODO: For certain shapes and stroke params we could ignore the scale. (e.g. miter or bevel
419 // stroke of a rect).
420 if (!parent.style().applies() ||
421 (GrStyle::Apply::kPathEffectOnly == apply && !parent.style().pathEffect())) {
422 this->initType(Type::kEmpty);
423 *this = parent;
424 return;
425 }
426
427 SkPathEffect* pe = parent.fStyle.pathEffect();
428 SkTLazy<SkPath> tmpPath;
429 const GrShape* parentForKey = &parent;
430 SkTLazy<GrShape> tmpParent;
431 this->initType(Type::kPath);
432 fPathData.fGenID = 0;
433 if (pe) {
434 const SkPath* srcForPathEffect;
435 if (parent.fType == Type::kPath) {
436 srcForPathEffect = &parent.path();
437 } else {
438 srcForPathEffect = tmpPath.init();
439 parent.asPath(tmpPath.get());
440 }
441 // Should we consider bounds? Would have to include in key, but it'd be nice to know
442 // if the bounds actually modified anything before including in key.
443 SkStrokeRec strokeRec = parent.fStyle.strokeRec();
444 if (!parent.fStyle.applyPathEffectToPath(&this->path(), &strokeRec, *srcForPathEffect,
445 scale)) {
446 tmpParent.init(*srcForPathEffect, GrStyle(strokeRec, nullptr));
447 *this = tmpParent.get()->applyStyle(apply, scale);
448 return;
449 }
450 // A path effect has access to change the res scale but we aren't expecting it to and it
451 // would mess up our key computation.
452 SkASSERT(scale == strokeRec.getResScale());
453 if (GrStyle::Apply::kPathEffectAndStrokeRec == apply && strokeRec.needToApply()) {
454 // The intermediate shape may not be a general path. If we we're just applying
455 // the path effect then attemptToReduceFromPath would catch it. This means that
456 // when we subsequently applied the remaining strokeRec we would have a non-path
457 // parent shape that would be used to determine the the stroked path's key.
458 // We detect that case here and change parentForKey to a temporary that represents
459 // the simpler shape so that applying both path effect and the strokerec all at
460 // once produces the same key.
461 tmpParent.init(this->path(), GrStyle(strokeRec, nullptr));
462 tmpParent.get()->setInheritedKey(parent, GrStyle::Apply::kPathEffectOnly, scale);
463 if (!tmpPath.isValid()) {
464 tmpPath.init();
465 }
466 tmpParent.get()->asPath(tmpPath.get());
467 SkStrokeRec::InitStyle fillOrHairline;
468 // The parent shape may have simplified away the strokeRec, check for that here.
469 if (tmpParent.get()->style().applies()) {
470 SkAssertResult(tmpParent.get()->style().applyToPath(&this->path(), &fillOrHairline,
471 *tmpPath.get(), scale));
472 } else if (tmpParent.get()->style().isSimpleFill()) {
473 fillOrHairline = SkStrokeRec::kFill_InitStyle;
474 } else {
475 SkASSERT(tmpParent.get()->style().isSimpleHairline());
476 fillOrHairline = SkStrokeRec::kHairline_InitStyle;
477 }
478 fStyle.resetToInitStyle(fillOrHairline);
479 parentForKey = tmpParent.get();
480 } else {
481 fStyle = GrStyle(strokeRec, nullptr);
482 }
483 } else {
484 const SkPath* srcForParentStyle;
485 if (parent.fType == Type::kPath) {
486 srcForParentStyle = &parent.path();
487 } else {
488 srcForParentStyle = tmpPath.init();
489 parent.asPath(tmpPath.get());
490 }
491 SkStrokeRec::InitStyle fillOrHairline;
492 SkASSERT(parent.fStyle.applies());
493 SkASSERT(!parent.fStyle.pathEffect());
494 SkAssertResult(parent.fStyle.applyToPath(&this->path(), &fillOrHairline, *srcForParentStyle,
495 scale));
496 fStyle.resetToInitStyle(fillOrHairline);
497 }
498 if (parent.fInheritedPathForListeners.isValid()) {
499 fInheritedPathForListeners.set(*parent.fInheritedPathForListeners.get());
500 } else if (Type::kPath == parent.fType && !parent.fPathData.fPath.isVolatile()) {
501 fInheritedPathForListeners.set(parent.fPathData.fPath);
502 }
503 this->attemptToSimplifyPath();
504 this->setInheritedKey(*parentForKey, apply, scale);
505 }
506
attemptToSimplifyPath()507 void GrShape::attemptToSimplifyPath() {
508 SkRect rect;
509 SkRRect rrect;
510 SkPath::Direction rrectDir;
511 unsigned rrectStart;
512 bool inverted = this->path().isInverseFillType();
513 SkPoint pts[2];
514 if (this->path().isEmpty()) {
515 // Dashing ignores inverseness skbug.com/5421.
516 this->changeType(inverted && !this->style().isDashed() ? Type::kInvertedEmpty
517 : Type::kEmpty);
518 } else if (this->path().isLine(pts)) {
519 this->changeType(Type::kLine);
520 fLineData.fPts[0] = pts[0];
521 fLineData.fPts[1] = pts[1];
522 fLineData.fInverted = inverted;
523 } else if (SkPathPriv::IsRRect(this->path(), &rrect, &rrectDir, &rrectStart)) {
524 this->changeType(Type::kRRect);
525 fRRectData.fRRect = rrect;
526 fRRectData.fDir = rrectDir;
527 fRRectData.fStart = rrectStart;
528 fRRectData.fInverted = inverted;
529 SkASSERT(!fRRectData.fRRect.isEmpty());
530 } else if (SkPathPriv::IsOval(this->path(), &rect, &rrectDir, &rrectStart)) {
531 this->changeType(Type::kRRect);
532 fRRectData.fRRect.setOval(rect);
533 fRRectData.fDir = rrectDir;
534 fRRectData.fInverted = inverted;
535 // convert from oval indexing to rrect indexiing.
536 fRRectData.fStart = 2 * rrectStart;
537 } else if (SkPathPriv::IsSimpleClosedRect(this->path(), &rect, &rrectDir, &rrectStart)) {
538 this->changeType(Type::kRRect);
539 // When there is a path effect we restrict rect detection to the narrower API that
540 // gives us the starting position. Otherwise, we will retry with the more aggressive
541 // isRect().
542 fRRectData.fRRect.setRect(rect);
543 fRRectData.fInverted = inverted;
544 fRRectData.fDir = rrectDir;
545 // convert from rect indexing to rrect indexiing.
546 fRRectData.fStart = 2 * rrectStart;
547 } else if (!this->style().hasPathEffect()) {
548 bool closed;
549 if (this->path().isRect(&rect, &closed, nullptr)) {
550 if (closed || this->style().isSimpleFill()) {
551 this->changeType(Type::kRRect);
552 fRRectData.fRRect.setRect(rect);
553 // Since there is no path effect the dir and start index is immaterial.
554 fRRectData.fDir = kDefaultRRectDir;
555 fRRectData.fStart = kDefaultRRectStart;
556 // There isn't dashing so we will have to preserver inverseness.
557 fRRectData.fInverted = inverted;
558 }
559 }
560 }
561 if (Type::kPath != fType) {
562 fInheritedKey.reset(0);
563 // Whenever we simplify to a non-path, break the chain so we no longer refer to the
564 // original path. This prevents attaching genID listeners to temporary paths created when
565 // drawing simple shapes.
566 fInheritedPathForListeners.reset();
567 if (Type::kRRect == fType) {
568 this->attemptToSimplifyRRect();
569 } else if (Type::kLine == fType) {
570 this->attemptToSimplifyLine();
571 }
572 } else {
573 if (fInheritedKey.count() || this->path().isVolatile()) {
574 fPathData.fGenID = 0;
575 } else {
576 fPathData.fGenID = this->path().getGenerationID();
577 }
578 if (!this->style().hasNonDashPathEffect()) {
579 if (this->style().strokeRec().getStyle() == SkStrokeRec::kStroke_Style ||
580 this->style().strokeRec().getStyle() == SkStrokeRec::kHairline_Style) {
581 // Stroke styles don't differentiate between winding and even/odd.
582 // Moreover, dashing ignores inverseness (skbug.com/5421)
583 bool inverse = !this->style().isDashed() && this->path().isInverseFillType();
584 if (inverse) {
585 this->path().setFillType(kDefaultPathInverseFillType);
586 } else {
587 this->path().setFillType(kDefaultPathFillType);
588 }
589 } else if (this->path().isConvex()) {
590 // There is no distinction between even/odd and non-zero winding count for convex
591 // paths.
592 if (this->path().isInverseFillType()) {
593 this->path().setFillType(kDefaultPathInverseFillType);
594 } else {
595 this->path().setFillType(kDefaultPathFillType);
596 }
597 }
598 }
599 }
600 }
601
attemptToSimplifyRRect()602 void GrShape::attemptToSimplifyRRect() {
603 SkASSERT(Type::kRRect == fType);
604 SkASSERT(!fInheritedKey.count());
605 if (fRRectData.fRRect.isEmpty()) {
606 // An empty filled rrect is equivalent to a filled empty path with inversion preserved.
607 if (fStyle.isSimpleFill()) {
608 fType = fRRectData.fInverted ? Type::kInvertedEmpty : Type::kEmpty;
609 fStyle = GrStyle::SimpleFill();
610 return;
611 }
612 // Dashing a rrect with no width or height is equivalent to filling an emtpy path.
613 // When skbug.com/7387 is fixed this should be modified or removed as a dashed zero length
614 // line will produce cap geometry if the effect begins in an "on" interval.
615 if (fStyle.isDashed() && !fRRectData.fRRect.width() && !fRRectData.fRRect.height()) {
616 // Dashing ignores the inverseness (currently). skbug.com/5421.
617 fType = Type::kEmpty;
618 fStyle = GrStyle::SimpleFill();
619 return;
620 }
621 }
622 if (!this->style().hasPathEffect()) {
623 fRRectData.fDir = kDefaultRRectDir;
624 fRRectData.fStart = kDefaultRRectStart;
625 } else if (fStyle.isDashed()) {
626 // Dashing ignores the inverseness (currently). skbug.com/5421
627 fRRectData.fInverted = false;
628 // Possible TODO here: Check whether the dash results in a single arc or line.
629 }
630 // Turn a stroke-and-filled miter rect into a filled rect. TODO: more rrect stroke shortcuts.
631 if (!fStyle.hasPathEffect() &&
632 fStyle.strokeRec().getStyle() == SkStrokeRec::kStrokeAndFill_Style &&
633 fStyle.strokeRec().getJoin() == SkPaint::kMiter_Join &&
634 fStyle.strokeRec().getMiter() >= SK_ScalarSqrt2 &&
635 fRRectData.fRRect.isRect()) {
636 SkScalar r = fStyle.strokeRec().getWidth() / 2;
637 fRRectData.fRRect = SkRRect::MakeRect(fRRectData.fRRect.rect().makeOutset(r, r));
638 fStyle = GrStyle::SimpleFill();
639 }
640 }
641
attemptToSimplifyLine()642 void GrShape::attemptToSimplifyLine() {
643 SkASSERT(Type::kLine == fType);
644 SkASSERT(!fInheritedKey.count());
645 if (fStyle.isDashed()) {
646 bool allOffsZero = true;
647 for (int i = 1; i < fStyle.dashIntervalCnt() && allOffsZero; i += 2) {
648 allOffsZero = !fStyle.dashIntervals()[i];
649 }
650 if (allOffsZero && this->attemptToSimplifyStrokedLineToRRect()) {
651 return;
652 }
653 // Dashing ignores inverseness.
654 fLineData.fInverted = false;
655 return;
656 } else if (fStyle.hasPathEffect()) {
657 return;
658 }
659 if (fStyle.strokeRec().getStyle() == SkStrokeRec::kStrokeAndFill_Style) {
660 // Make stroke + fill be stroke since the fill is empty.
661 SkStrokeRec rec = fStyle.strokeRec();
662 rec.setStrokeStyle(fStyle.strokeRec().getWidth(), false);
663 fStyle = GrStyle(rec, nullptr);
664 }
665 if (fStyle.isSimpleFill()) {
666 this->changeType(fLineData.fInverted ? Type::kInvertedEmpty : Type::kEmpty);
667 return;
668 }
669 if (fStyle.strokeRec().getStyle() == SkStrokeRec::kStroke_Style &&
670 this->attemptToSimplifyStrokedLineToRRect()) {
671 return;
672 }
673 // Only path effects could care about the order of the points. Otherwise canonicalize
674 // the point order.
675 SkPoint* pts = fLineData.fPts;
676 if (pts[1].fY < pts[0].fY || (pts[1].fY == pts[0].fY && pts[1].fX < pts[0].fX)) {
677 using std::swap;
678 swap(pts[0], pts[1]);
679 }
680 }
681
attemptToSimplifyArc()682 void GrShape::attemptToSimplifyArc() {
683 SkASSERT(fType == Type::kArc);
684 SkASSERT(!fArcData.fInverted);
685 if (fArcData.fOval.isEmpty() || !fArcData.fSweepAngleDegrees) {
686 this->changeType(Type::kEmpty);
687 return;
688 }
689
690 // Assuming no path effect, a filled, stroked, hairline, or stroke-and-filled arc that traverses
691 // the full circle and doesn't use the center point is an oval. Unless it has square or round
692 // caps. They may protrude out of the oval. Round caps can't protrude out of a circle but we're
693 // ignoring that for now.
694 if (fStyle.isSimpleFill() || (!fStyle.pathEffect() && !fArcData.fUseCenter &&
695 fStyle.strokeRec().getCap() == SkPaint::kButt_Cap)) {
696 if (fArcData.fSweepAngleDegrees >= 360.f || fArcData.fSweepAngleDegrees <= -360.f) {
697 auto oval = fArcData.fOval;
698 this->changeType(Type::kRRect);
699 this->fRRectData.fRRect.setOval(oval);
700 this->fRRectData.fDir = kDefaultRRectDir;
701 this->fRRectData.fStart = kDefaultRRectStart;
702 this->fRRectData.fInverted = false;
703 return;
704 }
705 }
706 if (!fStyle.pathEffect()) {
707 // Canonicalize the arc such that the start is always in [0, 360) and the sweep is always
708 // positive.
709 if (fArcData.fSweepAngleDegrees < 0) {
710 fArcData.fStartAngleDegrees = fArcData.fStartAngleDegrees + fArcData.fSweepAngleDegrees;
711 fArcData.fSweepAngleDegrees = -fArcData.fSweepAngleDegrees;
712 }
713 }
714 if (this->fArcData.fStartAngleDegrees < 0 || this->fArcData.fStartAngleDegrees >= 360.f) {
715 this->fArcData.fStartAngleDegrees = SkScalarMod(this->fArcData.fStartAngleDegrees, 360.f);
716 }
717 // Possible TODOs here: Look at whether dash pattern results in a single dash and convert to
718 // non-dashed stroke. Stroke and fill can be fill if circular and no path effect. Just stroke
719 // could as well if the stroke fills the center.
720 }
721
attemptToSimplifyStrokedLineToRRect()722 bool GrShape::attemptToSimplifyStrokedLineToRRect() {
723 SkASSERT(Type::kLine == fType);
724 SkASSERT(fStyle.strokeRec().getStyle() == SkStrokeRec::kStroke_Style);
725
726 SkRect rect;
727 SkVector outset;
728 // If we allowed a rotation angle for rrects we could capture all cases here.
729 if (fLineData.fPts[0].fY == fLineData.fPts[1].fY) {
730 rect.fLeft = SkTMin(fLineData.fPts[0].fX, fLineData.fPts[1].fX);
731 rect.fRight = SkTMax(fLineData.fPts[0].fX, fLineData.fPts[1].fX);
732 rect.fTop = rect.fBottom = fLineData.fPts[0].fY;
733 outset.fY = fStyle.strokeRec().getWidth() / 2.f;
734 outset.fX = SkPaint::kButt_Cap == fStyle.strokeRec().getCap() ? 0.f : outset.fY;
735 } else if (fLineData.fPts[0].fX == fLineData.fPts[1].fX) {
736 rect.fTop = SkTMin(fLineData.fPts[0].fY, fLineData.fPts[1].fY);
737 rect.fBottom = SkTMax(fLineData.fPts[0].fY, fLineData.fPts[1].fY);
738 rect.fLeft = rect.fRight = fLineData.fPts[0].fX;
739 outset.fX = fStyle.strokeRec().getWidth() / 2.f;
740 outset.fY = SkPaint::kButt_Cap == fStyle.strokeRec().getCap() ? 0.f : outset.fX;
741 } else {
742 return false;
743 }
744 rect.outset(outset.fX, outset.fY);
745 if (rect.isEmpty()) {
746 this->changeType(Type::kEmpty);
747 fStyle = GrStyle::SimpleFill();
748 return true;
749 }
750 SkRRect rrect;
751 if (fStyle.strokeRec().getCap() == SkPaint::kRound_Cap) {
752 SkASSERT(outset.fX == outset.fY);
753 rrect = SkRRect::MakeRectXY(rect, outset.fX, outset.fY);
754 } else {
755 rrect = SkRRect::MakeRect(rect);
756 }
757 bool inverted = fLineData.fInverted && !fStyle.hasPathEffect();
758 this->changeType(Type::kRRect);
759 fRRectData.fRRect = rrect;
760 fRRectData.fInverted = inverted;
761 fRRectData.fDir = kDefaultRRectDir;
762 fRRectData.fStart = kDefaultRRectStart;
763 fStyle = GrStyle::SimpleFill();
764 return true;
765 }
766