Lines Matching refs:properties
100 << (MathUtils::isZero(properties().getAlpha()) ? ", zero alpha" : "") in output()
101 << (properties().hasShadow() ? ", casting shadow" : "") in output()
103 << (properties().getProjectBackwards() ? ", projected" : "") in output()
106 properties().debugOutputProperties(output, level + 1); in output()
156 if (properties().getClipDamageToBounds()) { in damageSelf()
157 info.damageAccumulator->dirty(0, 0, properties().getWidth(), properties().getHeight()); in damageSelf()
170 LayerType layerType = properties().effectiveLayerType(); in prepareLayer()
185 LayerType layerType = properties().effectiveLayerType(); in pushLayerUpdate()
189 CC_UNLIKELY(properties().getWidth() == 0) || CC_UNLIKELY(properties().getHeight() == 0) || in pushLayerUpdate()
190 CC_UNLIKELY(!properties().fitsOnLayer())) { in pushLayerUpdate()
357 const auto subset = SkIRect::MakeWH(properties().getWidth(), in updateSnapshotIfRequired()
358 properties().getHeight()); in updateSnapshotIfRequired()
534 if (properties().getLeft() != 0 || properties().getTop() != 0) { in applyViewPropertyTransforms()
535 matrix.translate(properties().getLeft(), properties().getTop()); in applyViewPropertyTransforms()
537 if (properties().getStaticMatrix()) { in applyViewPropertyTransforms()
538 mat4 stat(*properties().getStaticMatrix()); in applyViewPropertyTransforms()
540 } else if (properties().getAnimationMatrix()) { in applyViewPropertyTransforms()
541 mat4 anim(*properties().getAnimationMatrix()); in applyViewPropertyTransforms()
545 bool applyTranslationZ = true3dTransform && !MathUtils::isZero(properties().getZ()); in applyViewPropertyTransforms()
546 if (properties().hasTransformMatrix() || applyTranslationZ) { in applyViewPropertyTransforms()
547 if (properties().isTransformTranslateOnly()) { in applyViewPropertyTransforms()
548 matrix.translate(properties().getTranslationX(), properties().getTranslationY(), in applyViewPropertyTransforms()
549 true3dTransform ? properties().getZ() : 0.0f); in applyViewPropertyTransforms()
552 matrix.multiply(*properties().getTransformMatrix()); in applyViewPropertyTransforms()
555 true3dMat.loadTranslate(properties().getPivotX() + properties().getTranslationX(), in applyViewPropertyTransforms()
556 properties().getPivotY() + properties().getTranslationY(), in applyViewPropertyTransforms()
557 properties().getZ()); in applyViewPropertyTransforms()
558 true3dMat.rotate(properties().getRotationX(), 1, 0, 0); in applyViewPropertyTransforms()
559 true3dMat.rotate(properties().getRotationY(), 0, 1, 0); in applyViewPropertyTransforms()
560 true3dMat.rotate(properties().getRotation(), 0, 0, 1); in applyViewPropertyTransforms()
561 true3dMat.scale(properties().getScaleX(), properties().getScaleY(), 1); in applyViewPropertyTransforms()
562 true3dMat.translate(-properties().getPivotX(), -properties().getPivotY()); in applyViewPropertyTransforms()
570 const StretchEffect& stretch = properties().layerProperties().getStretchEffect(); in applyViewPropertyTransforms()
573 stretch.makeLinearStretch(properties().getWidth(), properties().getHeight())); in applyViewPropertyTransforms()
579 const SkPath* outlinePath = properties().getOutline().getPath(); in getClippedOutline()