Home
last modified time | relevance | path

Searched defs:optional_point_t (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/m133/third_party/externals/harfbuzz/src/OT/glyf/
Dpath-builder.hh17 struct optional_point_t struct
19 optional_point_t () {} in optional_point_t() argument
20 optional_point_t (float x_, float y_) : has_data (true), x (x_), y (y_) {} in optional_point_t() function
21 operator bool () const { return has_data; } in operator bool()
23 bool has_data = false;
24 float x;
25 float y;
27 optional_point_t mid (optional_point_t p) in mid()
/third_party/skia/third_party/externals/harfbuzz/src/
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
1139 bool has_data;
1140 float x;
1141 float y;
1143 optional_point_t lerp (optional_point_t p, float t) in lerp()