/* * Copyright 2016 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "GrShape.h" GrShape& GrShape::operator=(const GrShape& that) { bool wasPath = Type::kPath == fType; fStyle = that.fStyle; fType = that.fType; switch (fType) { case Type::kEmpty: if (wasPath) { fPath.reset(); } break; case Type::kRRect: if (wasPath) { fPath.reset(); } fRRect = that.fRRect; fRRectDir = that.fRRectDir; fRRectStart = that.fRRectStart; break; case Type::kPath: if (wasPath) { *fPath.get() = *that.fPath.get(); } else { fPath.set(*that.fPath.get()); } break; } fInheritedKey.reset(that.fInheritedKey.count()); sk_careful_memcpy(fInheritedKey.get(), that.fInheritedKey.get(), sizeof(uint32_t) * fInheritedKey.count()); return *this; } const SkRect& GrShape::bounds() const { static constexpr SkRect kEmpty = SkRect::MakeEmpty(); switch (fType) { case Type::kEmpty: return kEmpty; case Type::kRRect: return fRRect.getBounds(); case Type::kPath: return fPath.get()->getBounds(); } SkFAIL("Unknown shape type"); return kEmpty; } void GrShape::styledBounds(SkRect* bounds) const { if (Type::kEmpty == fType && !fStyle.hasNonDashPathEffect()) { *bounds = SkRect::MakeEmpty(); } else { fStyle.adjustBounds(bounds, this->bounds()); } } int GrShape::unstyledKeySize() const { if (fInheritedKey.count()) { return fInheritedKey.count(); } switch (fType) { case Type::kEmpty: return 1; case Type::kRRect: SkASSERT(!fInheritedKey.count()); SkASSERT(0 == SkRRect::kSizeInMemory % sizeof(uint32_t)); // + 1 for the direction + start index. return SkRRect::kSizeInMemory / sizeof(uint32_t) + 1; case Type::kPath: if (fPath.get()->isVolatile()) { return -1; } else { return 1; } } SkFAIL("Should never get here."); return 0; } void GrShape::writeUnstyledKey(uint32_t* key) const { SkASSERT(this->unstyledKeySize()); SkDEBUGCODE(uint32_t* origKey = key;) if (fInheritedKey.count()) { memcpy(key, fInheritedKey.get(), sizeof(uint32_t) * fInheritedKey.count()); SkDEBUGCODE(key += fInheritedKey.count();) } else { switch (fType) { case Type::kEmpty: *key++ = 1; break; case Type::kRRect: fRRect.writeToMemory(key); key += SkRRect::kSizeInMemory / sizeof(uint32_t); *key = (fRRectDir == SkPath::kCCW_Direction) ? (1 << 31) : 0; *key++ |= fRRectStart; SkASSERT(fRRectStart < 8); break; case Type::kPath: SkASSERT(!fPath.get()->isVolatile()); *key++ = fPath.get()->getGenerationID(); break; } } SkASSERT(key - origKey == this->unstyledKeySize()); } void GrShape::setInheritedKey(const GrShape &parent, GrStyle::Apply apply, SkScalar scale) { SkASSERT(!fInheritedKey.count()); // If the output shape turns out to be simple, then we will just use its geometric key if (Type::kPath == fType) { // We want ApplyFullStyle(ApplyPathEffect(shape)) to have the same key as // ApplyFullStyle(shape). // The full key is structured as (geo,path_effect,stroke). // If we do ApplyPathEffect we get get,path_effect as the inherited key. If we then // do ApplyFullStyle we'll memcpy geo,path_effect into the new inherited key // and then append the style key (which should now be stroke only) at the end. int parentCnt = parent.fInheritedKey.count(); bool useParentGeoKey = !parentCnt; if (useParentGeoKey) { parentCnt = parent.unstyledKeySize(); if (parentCnt < 0) { // The parent's geometry has no key so we will have no key. fPath.get()->setIsVolatile(true); return; } } uint32_t styleKeyFlags = 0; if (parent.knownToBeClosed()) { styleKeyFlags |= GrStyle::kClosed_KeyFlag; } int styleCnt = GrStyle::KeySize(parent.fStyle, apply, styleKeyFlags); if (styleCnt < 0) { // The style doesn't allow a key, set the path to volatile so that we fail when // we try to get a key for the shape. fPath.get()->setIsVolatile(true); return; } fInheritedKey.reset(parentCnt + styleCnt); if (useParentGeoKey) { // This will be the geo key. parent.writeUnstyledKey(fInheritedKey.get()); } else { // This should be (geo,path_effect). memcpy(fInheritedKey.get(), parent.fInheritedKey.get(), parentCnt * sizeof(uint32_t)); } // Now turn (geo,path_effect) or (geo) into (geo,path_effect,stroke) GrStyle::WriteKey(fInheritedKey.get() + parentCnt, parent.fStyle, apply, scale, styleKeyFlags); } } GrShape::GrShape(const GrShape& that) : fType(that.fType), fStyle(that.fStyle) { switch (fType) { case Type::kEmpty: return; case Type::kRRect: fRRect = that.fRRect; return; case Type::kPath: fPath.set(*that.fPath.get()); return; } fInheritedKey.reset(that.fInheritedKey.count()); memcpy(fInheritedKey.get(), that.fInheritedKey.get(), sizeof(uint32_t) * fInheritedKey.count()); } GrShape::GrShape(const GrShape& parent, GrStyle::Apply apply, SkScalar scale) { // TODO: Add some quantization of scale for better cache performance here or leave that up // to caller? // TODO: For certain shapes and stroke params we could ignore the scale. (e.g. miter or bevel // stroke of a rect). if (!parent.style().applies() || (GrStyle::Apply::kPathEffectOnly == apply && !parent.style().pathEffect())) { fType = Type::kEmpty; *this = parent; return; } SkPathEffect* pe = parent.fStyle.pathEffect(); SkTLazy tmpPath; const GrShape* parentForKey = &parent; SkTLazy tmpParent; fType = Type::kPath; fPath.init(); if (pe) { SkPath* srcForPathEffect; if (parent.fType == Type::kPath) { srcForPathEffect = parent.fPath.get(); } else { srcForPathEffect = tmpPath.init(); parent.asPath(tmpPath.get()); } // Should we consider bounds? Would have to include in key, but it'd be nice to know // if the bounds actually modified anything before including in key. SkStrokeRec strokeRec = parent.fStyle.strokeRec(); strokeRec.setResScale(scale); if (!pe->filterPath(fPath.get(), *srcForPathEffect, &strokeRec, nullptr)) { // If the path effect fails then we continue as though there was no path effect. // If the original was a rrect that we couldn't canonicalize because of the path // effect, then do so now. if (parent.fType == Type::kRRect && (parent.fRRectDir != kDefaultRRectDir || parent.fRRectStart != kDefaultRRectStart)) { SkASSERT(srcForPathEffect == tmpPath.get()); tmpPath.get()->reset(); tmpPath.get()->addRRect(parent.fRRect, kDefaultRRectDir, kDefaultRRectDir); } *fPath.get() = *srcForPathEffect; } // A path effect has access to change the res scale but we aren't expecting it to and it // would mess up our key computation. SkASSERT(scale == strokeRec.getResScale()); if (GrStyle::Apply::kPathEffectAndStrokeRec == apply) { if (strokeRec.needToApply()) { // The intermediate shape may not be a general path. If we we're just applying // the path effect then attemptToReduceFromPath would catch it. This means that // when we subsequently applied the remaining strokeRec we would have a non-path // parent shape that would be used to determine the the stroked path's key. // We detect that case here and change parentForKey to a temporary that represents // the simpler shape so that applying both path effect and the strokerec all at // once produces the same key. SkRRect rrect; SkPath::Direction dir; unsigned start; Type parentType = AttemptToReduceFromPathImpl(*fPath.get(), &rrect, &dir, &start, nullptr, strokeRec); switch (parentType) { case Type::kEmpty: tmpParent.init(); parentForKey = tmpParent.get(); break; case Type::kRRect: tmpParent.init(rrect, dir, start, GrStyle(strokeRec, nullptr)); parentForKey = tmpParent.get(); case Type::kPath: break; } SkAssertResult(strokeRec.applyToPath(fPath.get(), *fPath.get())); } else { fStyle = GrStyle(strokeRec, nullptr); } } else { fStyle = GrStyle(strokeRec, nullptr); } } else { const SkPath* srcForParentStyle; if (parent.fType == Type::kPath) { srcForParentStyle = parent.fPath.get(); } else { srcForParentStyle = tmpPath.init(); parent.asPath(tmpPath.get()); } SkStrokeRec::InitStyle fillOrHairline; SkASSERT(parent.fStyle.applies()); SkASSERT(!parent.fStyle.pathEffect()); SkAssertResult(parent.fStyle.applyToPath(fPath.get(), &fillOrHairline, *srcForParentStyle, scale)); fStyle.resetToInitStyle(fillOrHairline); } this->attemptToReduceFromPath(); this->setInheritedKey(*parentForKey, apply, scale); } GrShape::Type GrShape::AttemptToReduceFromPathImpl(const SkPath& path, SkRRect* rrect, SkPath::Direction* rrectDir, unsigned* rrectStart, const SkPathEffect* pe, const SkStrokeRec& strokeRec) { if (path.isEmpty()) { return Type::kEmpty; } if (path.isRRect(rrect, rrectDir, rrectStart)) { // Currently SkPath does not acknowledge that empty, rect, or oval subtypes as rrects. SkASSERT(!rrect->isEmpty()); SkASSERT(rrect->getType() != SkRRect::kRect_Type); SkASSERT(rrect->getType() != SkRRect::kOval_Type); if (!pe) { *rrectStart = DefaultRRectDirAndStartIndex(*rrect, false, rrectDir); } return Type::kRRect; } SkRect rect; if (path.isOval(&rect, rrectDir, rrectStart)) { rrect->setOval(rect); if (!pe) { *rrectDir = kDefaultRRectDir; *rrectStart = kDefaultRRectStart; } else { // convert from oval indexing to rrect indexiing. *rrectStart *= 2; } return Type::kRRect; } // When there is a path effect we restrict rect detection to the narrower API that // gives us the starting position. Otherwise, we will retry with the more aggressive isRect(). if (SkPathPriv::IsSimpleClosedRect(path, &rect, rrectDir, rrectStart)) { if (!pe) { *rrectDir = kDefaultRRectDir; *rrectStart = kDefaultRRectStart; } else { // convert from rect indexing to rrect indexiing. *rrectStart *= 2; } rrect->setRect(rect); return Type::kRRect; } if (!pe) { bool closed; if (path.isRect(&rect, &closed, nullptr)) { if (closed || strokeRec.isFillStyle()) { rrect->setRect(rect); // Since there is no path effect the dir and start index is immaterial. *rrectDir = kDefaultRRectDir; *rrectStart = kDefaultRRectStart; return Type::kRRect; } } } return Type::kPath; }