Home
last modified time | relevance | path

Searched refs:modulated_props (Results 1 – 1 of 1) sorted by relevance

/external/skia/modules/skottie/src/text/
DTextAnimator.cpp117 auto modulated_props = props; in modulateProps() local
120 modulated_props.position += static_cast<SkV3>(fTextProps.position) * amount; in modulateProps()
121 modulated_props.rotation += fTextProps.rotation * amount; in modulateProps()
122 modulated_props.tracking += fTextProps.tracking * amount; in modulateProps()
123 modulated_props.scale *= SkV3{1,1,1} + in modulateProps()
127 modulated_props.blur += fTextProps.blur * amount; in modulateProps()
128 modulated_props.line_spacing += fTextProps.line_spacing * amount; in modulateProps()
144 modulated_props.fill_color = lerp_color(props.fill_color, fc, clamped_amount); in modulateProps()
148 modulated_props.stroke_color = lerp_color(props.stroke_color, sc, clamped_amount); in modulateProps()
150 modulated_props.opacity *= 1 + (fTextProps.opacity * 0.01f - 1) * clamped_amount; // 100-based in modulateProps()
[all …]