Lines Matching refs:curPolygon
1243 GDIPolygonCurveIter(const TTPOLYGONHEADER* curPolygon)
1244 : fCurCurve(SkTAddOffset<const TTPOLYCURVE>(curPolygon, sizeof(TTPOLYGONHEADER)))
1245 , fEndCurve(SkTAddOffset<const TTPOLYCURVE>(curPolygon, curPolygon->cb))
1250 void set(const TTPOLYGONHEADER* curPolygon) {
1251 fCurCurve = SkTAddOffset<const TTPOLYCURVE>(curPolygon, sizeof(TTPOLYGONHEADER));
1252 fEndCurve = SkTAddOffset<const TTPOLYCURVE>(curPolygon, curPolygon->cb);
1280 GDIPolygonCurvePointIter(const TTPOLYCURVE* curPolygon)
1281 : fCurveType(curPolygon->wType)
1282 , fCurPoint(&curPolygon->apfx[0])
1283 , fEndPoint(&curPolygon->apfx[curPolygon->cpfx])
1288 void set(const TTPOLYCURVE* curPolygon) {
1289 fCurveType = curPolygon->wType;
1290 fCurPoint = &curPolygon->apfx[0];
1291 fEndPoint = &curPolygon->apfx[curPolygon->cpfx];