Lines Matching refs:fInfo

153     ApplyInfo(paint, fCurrRec->fPaint, fCurrRec->fInfo);  in next()
156 if (fCurrRec->fInfo.fPostTranslate) { in next()
157 postTranslate(canvas, fCurrRec->fInfo.fOffset.fX, in next()
158 fCurrRec->fInfo.fOffset.fY); in next()
160 canvas->translate(fCurrRec->fInfo.fOffset.fX, in next()
161 fCurrRec->fInfo.fOffset.fY); in next()
175 if ((rec->fInfo.fPaintBits & ~kMaskFilter_Bit)) { in asABlurShadow()
178 if (SkBlendMode::kSrc != (SkBlendMode)rec->fInfo.fColorMode) { in asABlurShadow()
192 if (rec->fInfo.fPaintBits) { in asABlurShadow()
195 if (SkBlendMode::kDst != (SkBlendMode)rec->fInfo.fColorMode) { in asABlurShadow()
198 if (!rec->fInfo.fOffset.equals(0, 0)) { in asABlurShadow()
204 bsRec->fOffset = fRecs->fInfo.fOffset; in asABlurShadow()
222 newTopRec->fInfo = oldRec->fInfo; in onMakeColorSpace()
230 newRec->fInfo = oldRec->fInfo; in onMakeColorSpace()
253 buffer.writeInt(rec->fInfo.fPaintBits); in flatten()
254 buffer.writeInt((int)rec->fInfo.fColorMode); in flatten()
255 buffer.writePoint(rec->fInfo.fOffset); in flatten()
256 buffer.writeBool(rec->fInfo.fPostTranslate); in flatten()
287 if (0 == rec->fInfo.fPaintBits) { in toString()
289 } else if (kEntirePaint_Bits == rec->fInfo.fPaintBits) { in toString()
293 SkAddFlagToString(str, SkToBool(kStyle_Bit & rec->fInfo.fPaintBits), "Style", in toString()
295 SkAddFlagToString(str, SkToBool(kTextSkewX_Bit & rec->fInfo.fPaintBits), "TextSkewX", in toString()
297 SkAddFlagToString(str, SkToBool(kPathEffect_Bit & rec->fInfo.fPaintBits), "PathEffect", in toString()
299 SkAddFlagToString(str, SkToBool(kMaskFilter_Bit & rec->fInfo.fPaintBits), "MaskFilter", in toString()
301 SkAddFlagToString(str, SkToBool(kShader_Bit & rec->fInfo.fPaintBits), "Shader", in toString()
303 … SkAddFlagToString(str, SkToBool(kColorFilter_Bit & rec->fInfo.fPaintBits), "ColorFilter", in toString()
305 SkAddFlagToString(str, SkToBool(kXfermode_Bit & rec->fInfo.fPaintBits), "Xfermode", in toString()
317 str->appendf("mode: %s ", gModeStrings[(int)rec->fInfo.fColorMode]); in toString()
320 str->appendScalar(rec->fInfo.fOffset.fX); in toString()
322 str->appendScalar(rec->fInfo.fOffset.fY); in toString()
326 if (rec->fInfo.fPostTranslate) { in toString()
358 rec->fInfo = info; in addLayer()
379 rec->fInfo = info; in addLayerOnTop()