• Home
  • Raw
  • Download

Lines Matching refs:fRRectData

57         fRRectData.fRRect = rrect;  in GrShape()
58 fRRectData.fInverted = false; in GrShape()
59 fRRectData.fStart = DefaultRRectDirAndStartIndex(rrect, style.hasPathEffect(), in GrShape()
60 &fRRectData.fDir); in GrShape()
68 fRRectData.fRRect = rrect; in GrShape()
69 fRRectData.fInverted = inverted; in GrShape()
71 fRRectData.fDir = dir; in GrShape()
72 fRRectData.fStart = start; in GrShape()
73 if (fRRectData.fRRect.getType() == SkRRect::kRect_Type) { in GrShape()
74 fRRectData.fStart = (fRRectData.fStart + 1) & 0b110; in GrShape()
75 } else if (fRRectData.fRRect.getType() == SkRRect::kOval_Type) { in GrShape()
76 fRRectData.fStart &= 0b110; in GrShape()
79 fRRectData.fStart = DefaultRRectDirAndStartIndex(rrect, false, &fRRectData.fDir); in GrShape()
86 fRRectData.fRRect = SkRRect::MakeRect(rect); in GrShape()
87 fRRectData.fInverted = false; in GrShape()
88 fRRectData.fStart = DefaultRectDirAndStartIndex(rect, style.hasPathEffect(), in GrShape()
89 &fRRectData.fDir); in GrShape()
100 fRRectData.fRRect = rrect; in GrShape()
101 fRRectData.fInverted = false; in GrShape()
102 fRRectData.fStart = DefaultRRectDirAndStartIndex(rrect, fStyle.hasPathEffect(), in GrShape()
103 &fRRectData.fDir); in GrShape()
109 fRRectData.fRRect = SkRRect::MakeRect(rect); in GrShape()
110 fRRectData.fInverted = false; in GrShape()
111 fRRectData.fStart = DefaultRectDirAndStartIndex(rect, fStyle.hasPathEffect(), in GrShape()
112 &fRRectData.fDir); in GrShape()
159 return fRRectData.fRRect.isRect(); in isRect()
168 *rrect = fRRectData.fRRect; in asRRect()
171 *dir = fRRectData.fDir; in asRRect()
174 *start = fRRectData.fStart; in asRRect()
177 *inverted = fRRectData.fInverted; in asRRect()
212 out->addRRect(fRRectData.fRRect, fRRectData.fDir, fRRectData.fStart); in asPath()
214 if (fRRectData.fInverted) { in asPath()
350 ret = fRRectData.fInverted; in inverseFilled()
411 if (fRRectData.fRRect.getType() == SkRRect::kOval_Type) { in segmentMask()
413 } else if (fRRectData.fRRect.getType() == SkRRect::kRect_Type || in segmentMask()
414 fRRectData.fRRect.getType() == SkRRect::kEmpty_Type) { in segmentMask()
582 } fRRectData; member