Lines Matching refs:mNonAnimatableProperties

523             mCache.dirty |= (mProperties.mNonAnimatableProperties.viewportWidth !=  in syncProperties()
524 mStagingProperties.mNonAnimatableProperties.viewportWidth) || in syncProperties()
525 (mProperties.mNonAnimatableProperties.viewportHeight != in syncProperties()
526 mStagingProperties.mNonAnimatableProperties.viewportHeight) || in syncProperties()
527 (mProperties.mNonAnimatableProperties.scaledWidth != in syncProperties()
528 mStagingProperties.mNonAnimatableProperties.scaledWidth) || in syncProperties()
529 (mProperties.mNonAnimatableProperties.scaledHeight != in syncProperties()
530 mStagingProperties.mNonAnimatableProperties.scaledHeight) || in syncProperties()
531 (mProperties.mNonAnimatableProperties.bounds != in syncProperties()
532 mStagingProperties.mNonAnimatableProperties.bounds); in syncProperties()
558 } mNonAnimatableProperties; variable
566 if (mNonAnimatableProperties.colorFilter != prop.mNonAnimatableProperties.colorFilter) { in syncNonAnimatableProperties()
567 mNonAnimatableProperties.colorFilter = prop.mNonAnimatableProperties.colorFilter; in syncNonAnimatableProperties()
569 mNonAnimatableProperties = prop.mNonAnimatableProperties; in syncNonAnimatableProperties()
573 if (mNonAnimatableProperties.viewportWidth != width || in setViewportSize()
574 mNonAnimatableProperties.viewportHeight != height) { in setViewportSize()
576 mNonAnimatableProperties.viewportWidth = width; in setViewportSize()
577 mNonAnimatableProperties.viewportHeight = height; in setViewportSize()
582 if (mNonAnimatableProperties.bounds != bounds) { in setBounds()
583 mNonAnimatableProperties.bounds = bounds; in setBounds()
593 if (mNonAnimatableProperties.scaledWidth < width || in setScaledSize()
594 mNonAnimatableProperties.scaledHeight < height) { in setScaledSize()
595 mNonAnimatableProperties.scaledWidth = in setScaledSize()
596 std::max(width, mNonAnimatableProperties.scaledWidth); in setScaledSize()
597 mNonAnimatableProperties.scaledHeight = in setScaledSize()
598 std::max(height, mNonAnimatableProperties.scaledHeight); in setScaledSize()
604 if (mNonAnimatableProperties.colorFilter.get() != filter) { in setColorFilter()
605 mNonAnimatableProperties.colorFilter = sk_ref_sp(filter); in setColorFilter()
610 SkColorFilter* getColorFilter() const { return mNonAnimatableProperties.colorFilter.get(); } in getColorFilter()
612 float getViewportWidth() const { return mNonAnimatableProperties.viewportWidth; } in getViewportWidth()
613 float getViewportHeight() const { return mNonAnimatableProperties.viewportHeight; } in getViewportHeight()
614 float getScaledWidth() const { return mNonAnimatableProperties.scaledWidth; } in getScaledWidth()
615 float getScaledHeight() const { return mNonAnimatableProperties.scaledHeight; } in getScaledHeight()
627 const SkRect& getBounds() const { return mNonAnimatableProperties.bounds; } in getBounds()