Lines Matching full:prev
193 SkMatrix* fMatrix; // points to either fMatrixStorage or prev MCRec
194 SkRasterClip* fRasterClip; // points to either fRegionStorage or prev MCRec
206 MCRec(const MCRec* prev, int flags) : fFlags(flags) {
207 if (NULL != prev) {
209 fMatrixStorage = *prev->fMatrix;
212 fMatrix = prev->fMatrix;
216 fRasterClipStorage = *prev->fRasterClip;
219 fRasterClip = prev->fRasterClip;
222 fFilter = prev->fFilter;
225 fTopLayer = prev->fTopLayer;
226 } else { // no prev
1524 // if the prev and curr clips disagree about aa -vs- not, favor the aa request.