Searched refs:point_index (Results 1 – 7 of 7) sorted by relevance
/external/sfntly/cpp/src/sfntly/table/truetype/ |
D | glyph_table.cc | 411 for (int32_t point_index = 0; point_index < number_of_points_; in ParseData() local 412 ++point_index) { in ParseData() 425 on_curve_[point_index] = ((flag & kFLAG_ONCURVE) == kFLAG_ONCURVE); in ParseData() 431 x_coordinates_[point_index] = in ParseData() 433 x_coordinates_[point_index] *= in ParseData() 441 x_coordinates_[point_index] = in ParseData() 447 if (fill_arrays && point_index > 0) { in ParseData() 448 x_coordinates_[point_index] += x_coordinates_[point_index - 1]; in ParseData() 454 y_coordinates_[point_index] = in ParseData() 456 y_coordinates_[point_index] *= in ParseData() [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-font.cc | 408 unsigned int point_index HB_UNUSED, in hb_font_get_glyph_contour_point_nil() 420 unsigned int point_index, in hb_font_get_glyph_contour_point_default() argument 425 hb_bool_t ret = font->parent->get_glyph_contour_point (glyph, point_index, x, y); in hb_font_get_glyph_contour_point_default() 1030 hb_codepoint_t glyph, unsigned int point_index, in hb_font_get_glyph_contour_point() argument 1033 return font->get_glyph_contour_point (glyph, point_index, x, y); in hb_font_get_glyph_contour_point() 1263 hb_codepoint_t glyph, unsigned int point_index, in hb_font_get_glyph_contour_point_for_origin() argument 1267 return font->get_glyph_contour_point_for_origin (glyph, point_index, direction, x, y); in hb_font_get_glyph_contour_point_for_origin()
|
D | hb-font.hh | 340 hb_bool_t get_glyph_contour_point (hb_codepoint_t glyph, unsigned int point_index, in get_glyph_contour_point() 345 glyph, point_index, in get_glyph_contour_point() 558 hb_bool_t get_glyph_contour_point_for_origin (hb_codepoint_t glyph, unsigned int point_index, in get_glyph_contour_point_for_origin() 562 hb_bool_t ret = get_glyph_contour_point (glyph, point_index, x, y); in get_glyph_contour_point_for_origin()
|
D | hb-font.h | 171 hb_codepoint_t glyph, unsigned int point_index, 512 hb_codepoint_t glyph, unsigned int point_index, 581 hb_codepoint_t glyph, unsigned int point_index,
|
D | hb-ft.cc | 405 unsigned int point_index, in hb_ft_get_glyph_contour_point() argument 420 if (unlikely (point_index >= (unsigned int) ft_face->glyph->outline.n_points)) in hb_ft_get_glyph_contour_point() 423 *x = ft_face->glyph->outline.points[point_index].x; in hb_ft_get_glyph_contour_point() 424 *y = ft_face->glyph->outline.points[point_index].y; in hb_ft_get_glyph_contour_point()
|
/external/harfbuzz_ng/test/api/ |
D | test-font.c | 211 hb_codepoint_t glyph, unsigned int point_index HB_UNUSED, in contour_point_func1() 231 hb_codepoint_t glyph, unsigned int point_index, in contour_point_func2() argument 242 glyph, point_index, x, y); in contour_point_func2()
|
/external/harfbuzz_ng/ |
D | NEWS | 2215 hb_font_get_contour_point_func_t now takes glyph first, then point_index
|