Lines Matching refs:mNonAnimatableProperties

522             mCache.dirty |= (mProperties.mNonAnimatableProperties.viewportWidth !=  in syncProperties()
523 mStagingProperties.mNonAnimatableProperties.viewportWidth) || in syncProperties()
524 (mProperties.mNonAnimatableProperties.viewportHeight != in syncProperties()
525 mStagingProperties.mNonAnimatableProperties.viewportHeight) || in syncProperties()
526 (mProperties.mNonAnimatableProperties.scaledWidth != in syncProperties()
527 mStagingProperties.mNonAnimatableProperties.scaledWidth) || in syncProperties()
528 (mProperties.mNonAnimatableProperties.scaledHeight != in syncProperties()
529 mStagingProperties.mNonAnimatableProperties.scaledHeight) || in syncProperties()
530 (mProperties.mNonAnimatableProperties.bounds != in syncProperties()
531 mStagingProperties.mNonAnimatableProperties.bounds); in syncProperties()
557 } mNonAnimatableProperties; variable
565 if (mNonAnimatableProperties.colorFilter != prop.mNonAnimatableProperties.colorFilter) { in syncNonAnimatableProperties()
566 mNonAnimatableProperties.colorFilter = prop.mNonAnimatableProperties.colorFilter; in syncNonAnimatableProperties()
568 mNonAnimatableProperties = prop.mNonAnimatableProperties; in syncNonAnimatableProperties()
572 if (mNonAnimatableProperties.viewportWidth != width || in setViewportSize()
573 mNonAnimatableProperties.viewportHeight != height) { in setViewportSize()
575 mNonAnimatableProperties.viewportWidth = width; in setViewportSize()
576 mNonAnimatableProperties.viewportHeight = height; in setViewportSize()
581 if (mNonAnimatableProperties.bounds != bounds) { in setBounds()
582 mNonAnimatableProperties.bounds = bounds; in setBounds()
592 if (mNonAnimatableProperties.scaledWidth < width || in setScaledSize()
593 mNonAnimatableProperties.scaledHeight < height) { in setScaledSize()
594 mNonAnimatableProperties.scaledWidth = in setScaledSize()
595 std::max(width, mNonAnimatableProperties.scaledWidth); in setScaledSize()
596 mNonAnimatableProperties.scaledHeight = in setScaledSize()
597 std::max(height, mNonAnimatableProperties.scaledHeight); in setScaledSize()
603 if (mNonAnimatableProperties.colorFilter.get() != filter) { in setColorFilter()
604 mNonAnimatableProperties.colorFilter = sk_ref_sp(filter); in setColorFilter()
609 SkColorFilter* getColorFilter() const { return mNonAnimatableProperties.colorFilter.get(); } in getColorFilter()
611 float getViewportWidth() const { return mNonAnimatableProperties.viewportWidth; } in getViewportWidth()
612 float getViewportHeight() const { return mNonAnimatableProperties.viewportHeight; } in getViewportHeight()
613 float getScaledWidth() const { return mNonAnimatableProperties.scaledWidth; } in getScaledWidth()
614 float getScaledHeight() const { return mNonAnimatableProperties.scaledHeight; } in getScaledHeight()
626 const SkRect& getBounds() const { return mNonAnimatableProperties.bounds; } in getBounds()