Lines Matching refs:fTextProps

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