Lines Matching refs:to_y
20 _move_to (hb_position_t to_x, hb_position_t to_y, void *user_data_) in _move_to() argument
26 user_data->path_start_y = user_data->path_last_y = to_y; in _move_to()
30 _line_to (hb_position_t to_x, hb_position_t to_y, void *user_data_) in _line_to() argument
34 assert (user_data->path_last_x != to_x || user_data->path_last_y != to_y); in _line_to()
37 user_data->path_last_y = to_y; in _line_to()
42 hb_position_t to_x, hb_position_t to_y, void *user_data_) in _quadratic_to() argument
47 user_data->path_last_x != to_x || user_data->path_last_y != to_y); in _quadratic_to()
50 user_data->path_last_y = to_y; in _quadratic_to()
56 hb_position_t to_x, hb_position_t to_y, void *user_data_) in _cubic_to() argument
62 user_data->path_last_x != to_x || user_data->path_last_y != to_y); in _cubic_to()
65 user_data->path_last_y = to_y; in _cubic_to()