Home | History | Annotate | Download | only in samplecode

Lines Matching full:fpts

135     set_cubic(cubic.fPts + 0, 0, 0, 100, 0, scale);
136 set_cubic(cubic.fPts + 3, 100, 0, 100, 100, scale);
137 set_cubic(cubic.fPts + 6, 100, 100, 0, 100, -scale);
138 set_cubic(cubic.fPts + 9, 0, 100, 0, 0, 0);
163 set_cubic(cubic.fPts + 0, 0, 0, 100, 0, 0);
164 set_cubic(cubic.fPts + 3, 100, 0, 100, 100, 0);
165 set_cubic(cubic.fPts + 6, 100, 100, 0, 100, 0);
166 set_cubic(cubic.fPts + 9, 0, 100, 0, 0, 0);
169 cubic.fPts[1] += p1 - p0;
170 cubic.fPts[2] += p1 - p0;
177 cubic.fPts[1].fY += dy;
178 cubic.fPts[2].fY += dy;
179 cubic.fPts[10].fX += dx;
180 cubic.fPts[11].fX += dx;
224 return fPts[row * (fRows + 1) + col];
233 SkPoint* fPts;
234 SkPoint* fTex; // just points into fPts, not separately allocated
240 Mesh::Mesh() : fPts(NULL), fCount(0), fIndices(NULL), fIndexCount(0) {}
243 delete[] fPts;
248 delete[] fPts;
256 fPts = new SkPoint[fCount * 2];
257 fTex = fPts + fCount;
258 memcpy(fPts, src.fPts, fCount * 2 * sizeof(SkPoint));
276 delete[] fPts;
278 fPts = new SkPoint[fCount * 2];
279 fTex = fPts + fCount;
285 SkPoint* pts = fPts;
318 fPts, fTex, NULL, NULL, fIndices, fIndexCount,
324 fPts, NULL, NULL, NULL, fIndices, fIndexCount,