Lines Matching refs:curPolygon
1385 GDIPolygonCurveIter(const TTPOLYGONHEADER* curPolygon) in GDIPolygonCurveIter() argument
1386 : fCurCurve(SkTAddOffset<const TTPOLYCURVE>(curPolygon, sizeof(TTPOLYGONHEADER))) in GDIPolygonCurveIter()
1387 , fEndCurve(SkTAddOffset<const TTPOLYCURVE>(curPolygon, curPolygon->cb)) in GDIPolygonCurveIter()
1392 void set(const TTPOLYGONHEADER* curPolygon) { in set() argument
1393 fCurCurve = SkTAddOffset<const TTPOLYCURVE>(curPolygon, sizeof(TTPOLYGONHEADER)); in set()
1394 fEndCurve = SkTAddOffset<const TTPOLYCURVE>(curPolygon, curPolygon->cb); in set()
1422 GDIPolygonCurvePointIter(const TTPOLYCURVE* curPolygon) in GDIPolygonCurvePointIter() argument
1423 : fCurveType(curPolygon->wType) in GDIPolygonCurvePointIter()
1424 , fCurPoint(&curPolygon->apfx[0]) in GDIPolygonCurvePointIter()
1425 , fEndPoint(&curPolygon->apfx[curPolygon->cpfx]) in GDIPolygonCurvePointIter()
1430 void set(const TTPOLYCURVE* curPolygon) { in set() argument
1431 fCurveType = curPolygon->wType; in set()
1432 fCurPoint = &curPolygon->apfx[0]; in set()
1433 fEndPoint = &curPolygon->apfx[curPolygon->cpfx]; in set()