Lines Matching refs:fRec
153 fRec = &fInitialRec; in Sk3DView()
157 Rec* rec = fRec; in ~Sk3DView()
167 rec->fNext = fRec; in save()
168 rec->fMatrix = fRec->fMatrix; in save()
169 fRec = rec; in save()
173 SkASSERT(fRec != &fInitialRec); in restore()
174 Rec* next = fRec->fNext; in restore()
175 delete fRec; in restore()
176 fRec = next; in restore()
201 fRec->fMatrix.preTranslate(x, y, z); in translate()
205 fRec->fMatrix.preConcat(SkM44::Rotate({1, 0, 0}, deg * SK_ScalarPI / 180)); in rotateX()
209 fRec->fMatrix.preConcat(SkM44::Rotate({0,-1, 0}, deg * SK_ScalarPI / 180)); in rotateY()
213 fRec->fMatrix.preConcat(SkM44::Rotate({0, 0, 1}, deg * SK_ScalarPI / 180)); in rotateZ()
218 patch.transform(fRec->fMatrix); in dotWithNormal()
225 patch.transform(fRec->fMatrix); in getMatrix()