• Home
  • Raw
  • Download

Lines Matching refs:fTextProps

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()
124 (static_cast<SkV3>(fTextProps.scale) * 0.01f - SkV3{1,1,1}) * amount; in modulateProps()
127 modulated_props.blur += fTextProps.blur * amount; in modulateProps()
128 modulated_props.line_spacing += fTextProps.line_spacing * amount; in modulateProps()
143 const auto fc = static_cast<SkColor>(fTextProps.fill_color); in modulateProps()
147 const auto sc = static_cast<SkColor>(fTextProps.stroke_color); in modulateProps()
163 fTextProps.fill_opacity * 0.01f, in modulateProps()
166 fTextProps.stroke_opacity * 0.01f, in modulateProps()
169 fTextProps.opacity * 0.01f, in modulateProps()
182 acontainer->bind(*abuilder, jprops["p" ], fTextProps.position); in TextAnimator()
183 acontainer->bind(*abuilder, jprops["o" ], fTextProps.opacity); in TextAnimator()
184 acontainer->bind(*abuilder, jprops["fo"], fTextProps.fill_opacity); in TextAnimator()
185 acontainer->bind(*abuilder, jprops["so"], fTextProps.stroke_opacity); in TextAnimator()
186 acontainer->bind(*abuilder, jprops["t" ], fTextProps.tracking); in TextAnimator()
187 acontainer->bind(*abuilder, jprops["ls"], fTextProps.line_spacing); in TextAnimator()
190 fRequiresAnchorPoint |= acontainer->bind(*abuilder, jprops["s"], fTextProps.scale); in TextAnimator()
194 fRequiresAnchorPoint |= acontainer->bind(*abuilder, jprops["rx"], fTextProps.rotation.x); in TextAnimator()
195 fRequiresAnchorPoint |= acontainer->bind(*abuilder, jprops["ry"], fTextProps.rotation.y); in TextAnimator()
196 fRequiresAnchorPoint |= acontainer->bind(*abuilder, jprops["r" ], fTextProps.rotation.z); in TextAnimator()
198 fHasFillColor = acontainer->bind(*abuilder, jprops["fc"], fTextProps.fill_color ); in TextAnimator()
199 fHasStrokeColor = acontainer->bind(*abuilder, jprops["sc"], fTextProps.stroke_color); in TextAnimator()
200 fHasBlur = acontainer->bind(*abuilder, jprops["bl"], fTextProps.blur ); in TextAnimator()