Home
last modified time | relevance | path

Searched refs:optional_point_t (Results 1 - 1 of 1) sorted by relevance

/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-glyf-table.hh1134 struct optional_point_t struct
1136 optional_point_t () { has_data = false; } in optional_point_t() function
1137 optional_point_t (float x_, float y_) { x = x_; y = y_; has_data = true; } in optional_point_t() function
1143 optional_point_t lerp (optional_point_t p, float t) in lerp()
1144 { return optional_point_t (x + t * (p.x - x), y + t * (p.y - y)); } in lerp()
1151 first_oncurve = first_offcurve = last_offcurve = optional_point_t (); in path_builder_t()
1165 optional_point_t p (point.x, point.y); in consume_point()
1177 optional_point_t mid = first_offcurve.lerp (p, .5f); in consume_point()
1194 last_offcurve = optional_point_t (); in consume_point()
[all...]

Completed in 3 milliseconds