[cairo] Hide internal symbols

This commit is contained in:
Behdad Esfahbod 2022-12-27 10:42:13 -07:00
parent 7d3b373925
commit c52bff2d61
1 changed files with 24 additions and 20 deletions

View File

@ -70,7 +70,8 @@ hb_paint_composite_mode_to_cairo (hb_paint_composite_mode_t mode)
return CAIRO_OPERATOR_SOURCE;
}
hb_bool_t hb_cairo_paint_glyph_image (cairo_t *cr,
HB_INTERNAL hb_bool_t
hb_cairo_paint_glyph_image (cairo_t *cr,
hb_blob_t *blob,
unsigned width,
unsigned height,
@ -78,18 +79,21 @@ hb_bool_t hb_cairo_paint_glyph_image (cairo_t *cr,
float slant,
hb_glyph_extents_t *extents);
void hb_cairo_paint_linear_gradient (cairo_t *cr,
HB_INTERNAL void
hb_cairo_paint_linear_gradient (cairo_t *cr,
hb_color_line_t *color_line,
float x0, float y0,
float x1, float y1,
float x2, float y2);
void hb_cairo_paint_radial_gradient (cairo_t *cr,
HB_INTERNAL void
hb_cairo_paint_radial_gradient (cairo_t *cr,
hb_color_line_t *color_line,
float x0, float y0, float r0,
float x1, float y1, float r1);
void hb_cairo_paint_sweep_gradient (cairo_t *cr,
HB_INTERNAL void
hb_cairo_paint_sweep_gradient (cairo_t *cr,
hb_color_line_t *color_line,
float x0, float y0,
float start_angle, float end_angle);