• Home
  • Raw
  • Download

Lines Matching refs:fRRectData

21             fRRectData = that.fRRectData;  in operator =()
85 result.fRRectData.fRRect = original.fRRectData.fRRect; in MakeFilled()
86 result.fRRectData.fDir = kDefaultRRectDir; in MakeFilled()
87 result.fRRectData.fStart = kDefaultRRectStart; in MakeFilled()
88 result.fRRectData.fInverted = is_inverted(original.fRRectData.fInverted, inversion); in MakeFilled()
159 return fRRectData.fRRect.getBounds(); in bounds()
276 fRRectData.fRRect.writeToMemory(key); in writeUnstyledKey()
278 *key = (fRRectData.fDir == SkPath::kCCW_Direction) ? (1 << 31) : 0; in writeUnstyledKey()
279 *key |= fRRectData.fInverted ? (1 << 30) : 0; in writeUnstyledKey()
280 *key++ |= fRRectData.fStart; in writeUnstyledKey()
281 SkASSERT(fRRectData.fStart < 8); in writeUnstyledKey()
397 fRRectData = that.fRRectData; in GrShape()
527 fRRectData.fRRect = rrect; in attemptToSimplifyPath()
528 fRRectData.fDir = rrectDir; in attemptToSimplifyPath()
529 fRRectData.fStart = rrectStart; in attemptToSimplifyPath()
530 fRRectData.fInverted = inverted; in attemptToSimplifyPath()
531 SkASSERT(!fRRectData.fRRect.isEmpty()); in attemptToSimplifyPath()
534 fRRectData.fRRect.setOval(rect); in attemptToSimplifyPath()
535 fRRectData.fDir = rrectDir; in attemptToSimplifyPath()
536 fRRectData.fInverted = inverted; in attemptToSimplifyPath()
538 fRRectData.fStart = 2 * rrectStart; in attemptToSimplifyPath()
544 fRRectData.fRRect.setRect(rect); in attemptToSimplifyPath()
545 fRRectData.fInverted = inverted; in attemptToSimplifyPath()
546 fRRectData.fDir = rrectDir; in attemptToSimplifyPath()
548 fRRectData.fStart = 2 * rrectStart; in attemptToSimplifyPath()
554 fRRectData.fRRect.setRect(rect); in attemptToSimplifyPath()
556 fRRectData.fDir = kDefaultRRectDir; in attemptToSimplifyPath()
557 fRRectData.fStart = kDefaultRRectStart; in attemptToSimplifyPath()
559 fRRectData.fInverted = inverted; in attemptToSimplifyPath()
607 if (fRRectData.fRRect.isEmpty()) { in attemptToSimplifyRRect()
610 fType = fRRectData.fInverted ? Type::kInvertedEmpty : Type::kEmpty; in attemptToSimplifyRRect()
617 if (fStyle.isDashed() && !fRRectData.fRRect.width() && !fRRectData.fRRect.height()) { in attemptToSimplifyRRect()
625 fRRectData.fDir = kDefaultRRectDir; in attemptToSimplifyRRect()
626 fRRectData.fStart = kDefaultRRectStart; in attemptToSimplifyRRect()
629 fRRectData.fInverted = false; in attemptToSimplifyRRect()
637 fRRectData.fRRect.isRect()) { in attemptToSimplifyRRect()
639 fRRectData.fRRect = SkRRect::MakeRect(fRRectData.fRRect.rect().makeOutset(r, r)); in attemptToSimplifyRRect()
701 this->fRRectData.fRRect.setOval(oval); in attemptToSimplifyArc()
702 this->fRRectData.fDir = kDefaultRRectDir; in attemptToSimplifyArc()
703 this->fRRectData.fStart = kDefaultRRectStart; in attemptToSimplifyArc()
704 this->fRRectData.fInverted = false; in attemptToSimplifyArc()
761 fRRectData.fRRect = rrect; in attemptToSimplifyStrokedLineToRRect()
762 fRRectData.fInverted = inverted; in attemptToSimplifyStrokedLineToRRect()
763 fRRectData.fDir = kDefaultRRectDir; in attemptToSimplifyStrokedLineToRRect()
764 fRRectData.fStart = kDefaultRRectStart; in attemptToSimplifyStrokedLineToRRect()