Lines Matching refs:RectInfo
197 void* mem = fRectData.push_back_n(sizeof(RectInfo)); in AAFillRectOp()
198 new (mem) RectInfo(color, viewMatrix, rect, devRect); in AAFillRectOp()
216 const RectInfo* info = this->first(); in dumpInfo()
268 const RectInfo* info = this->first(); in onPrepareDraws()
300 struct RectInfo { struct in __anon3129c1af0111::AAFillRectOp
302 RectInfo(GrColor color, const SkMatrix& viewMatrix, const SkRect& rect, in RectInfo() function
304 : RectInfo(color, viewMatrix, rect, devRect, HasLocalMatrix::kNo) {} in RectInfo()
316 RectInfo(GrColor color, const SkMatrix& viewMatrix, const SkRect& rect, in RectInfo() argument
331 struct RectWithLocalMatrixInfo : public RectInfo {
335 : RectInfo(color, viewMatrix, rect, devRect, HasLocalMatrix::kYes) in RectWithLocalMatrixInfo()
343 RectInfo* first() { return reinterpret_cast<RectInfo*>(fRectData.begin()); } in first()
344 const RectInfo* first() const { return reinterpret_cast<const RectInfo*>(fRectData.begin()); } in first()
345 const RectInfo* next(const RectInfo* prev) const { in next()
348 (prev->hasLocalMatrix() ? sizeof(RectWithLocalMatrixInfo) : sizeof(RectInfo)); in next()
349 return reinterpret_cast<const RectInfo*>(next); in next()