Searched refs:tmpParent (Results 1 – 2 of 2) sorted by relevance
/external/skia/src/gpu/geometry/ |
D | GrStyledShape.cpp | 345 SkTLazy<GrStyledShape> tmpParent; in GrStyledShape() local 363 tmpParent.init(*srcForPathEffect, GrStyle(strokeRec, nullptr)); in GrStyledShape() 364 *this = tmpParent->applyStyle(apply, scale); in GrStyledShape() 378 tmpParent.init(fShape.path(), GrStyle(strokeRec, nullptr)); in GrStyledShape() 379 tmpParent->setInheritedKey(parent, GrStyle::Apply::kPathEffectOnly, scale); in GrStyledShape() 383 tmpParent->asPath(tmpPath.get()); in GrStyledShape() 386 if (tmpParent->style().applies()) { in GrStyledShape() 387 SkAssertResult(tmpParent.get()->style().applyToPath(&fShape.path(), &fillOrHairline, in GrStyledShape() 389 } else if (tmpParent->style().isSimpleFill()) { in GrStyledShape() 392 SkASSERT(tmpParent.get()->style().isSimpleHairline()); in GrStyledShape() [all …]
|
/external/skqp/src/gpu/ |
D | GrShape.cpp | 432 SkTLazy<GrShape> tmpParent; in GrShape() local 448 tmpParent.init(*srcForPathEffect, GrStyle(strokeRec, nullptr)); in GrShape() 449 *this = tmpParent.get()->applyStyle(apply, scale); in GrShape() 463 tmpParent.init(this->path(), GrStyle(strokeRec, nullptr)); in GrShape() 464 tmpParent.get()->setInheritedKey(parent, GrStyle::Apply::kPathEffectOnly, scale); in GrShape() 468 tmpParent.get()->asPath(tmpPath.get()); in GrShape() 471 if (tmpParent.get()->style().applies()) { in GrShape() 472 SkAssertResult(tmpParent.get()->style().applyToPath(&this->path(), &fillOrHairline, in GrShape() 474 } else if (tmpParent.get()->style().isSimpleFill()) { in GrShape() 477 SkASSERT(tmpParent.get()->style().isSimpleHairline()); in GrShape() [all …]
|