Lines Matching refs:mProperties

38     ALOGD("Path: %s has %zu points", mName.c_str(), mProperties.getData().points.size());  in dump()
61 VectorDrawableUtils::verbsToPath(&mSkPath, mProperties.getData()); in getUpdatedPath()
70 mProperties.syncProperties(mStagingProperties); in syncProperties()
72 mStagingProperties.syncProperties(mProperties); in syncProperties()
108 if (!useStagingData && !mSkPathDirty && !mProperties.mTrimDirty) { in getUpdatedPath()
119 if (mProperties.getTrimPathStart() != 0.0f || mProperties.getTrimPathEnd() != 1.0f) { in getUpdatedPath()
120 mProperties.mTrimDirty = false; in getUpdatedPath()
121 applyTrim(&mTrimmedSkPath, mSkPath, mProperties.getTrimPathStart(), in getUpdatedPath()
122 mProperties.getTrimPathEnd(), mProperties.getTrimPathOffset()); in getUpdatedPath()
128 const FullPathProperties& properties = useStagingData ? mStagingProperties : mProperties; in getUpdatedPath()
141 mProperties.getStrokeWidth(), mProperties.getStrokeColor(), mProperties.getStrokeAlpha(), in dump()
142 mProperties.getFillColor(), mProperties.getFillAlpha()); in dump()
151 const FullPathProperties& properties = useStagingData ? mStagingProperties : mProperties; in draw()
198 mProperties.syncProperties(mStagingProperties); in syncProperties()
201 mStagingProperties.syncProperties(mProperties); in syncProperties()
279 const GroupProperties& prop = useStagingData ? mStagingProperties : mProperties; in draw()
291 ALOGD("Group translateX, Y : %f, %f, scaleX, Y: %f, %f", mProperties.getTranslateX(), in dump()
292 mProperties.getTranslateY(), mProperties.getScaleX(), mProperties.getScaleY()); in dump()
301 mProperties.syncProperties(mStagingProperties); in syncProperties()
303 mStagingProperties.syncProperties(mProperties); in syncProperties()
480 bool redrawNeeded = allocateBitmapIfNeeded(mCache, mProperties.getScaledWidth(), in getBitmapUpdateIfDirty()
481 mProperties.getScaledHeight()); in getBitmapUpdateIfDirty()
492 bool canReuseSurface = surface && dst.width() >= mProperties.getScaledWidth() && in updateCache()
493 dst.height() >= mProperties.getScaledHeight(); in updateCache()
495 int scaledWidth = SkScalarCeilToInt(mProperties.getScaledWidth()); in updateCache()
496 int scaledHeight = SkScalarCeilToInt(mProperties.getScaledHeight()); in updateCache()
557 paint.setAlpha(mProperties.getRootAlpha() * 255); in draw()
565 int scaledWidth = SkScalarCeilToInt(mProperties.getScaledWidth()); in draw()
566 int scaledHeight = SkScalarCeilToInt(mProperties.getScaledHeight()); in draw()
585 int scaledWidth = SkScalarCeilToInt(mProperties.getScaledWidth()); in draw()
586 int scaledHeight = SkScalarCeilToInt(mProperties.getScaledHeight()); in draw()
603 useStagingData ? mStagingProperties.getViewportWidth() : mProperties.getViewportWidth(); in updateBitmapCache()
605 : mProperties.getViewportHeight(); in updateBitmapCache()