mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-02 21:40:15 +01:00
Mark private functions as cairo_private
(cherry picked from a1c72cd8f244e97d4b6fe3e5d3efa622c8b3f7f9 commit)
This commit is contained in:
parent
b2912241f6
commit
07205ddc4b
2 changed files with 8 additions and 8 deletions
|
|
@ -47,7 +47,7 @@ _cairo_paginated_surface_create (cairo_surface_t *target,
|
|||
cairo_private cairo_surface_t *
|
||||
_cairo_paginated_surface_get_target (cairo_surface_t *surface);
|
||||
|
||||
cairo_bool_t
|
||||
cairo_private cairo_bool_t
|
||||
_cairo_surface_is_paginated (cairo_surface_t *surface);
|
||||
|
||||
#endif /* CAIRO_PAGINATED_SURFACE_H */
|
||||
|
|
|
|||
|
|
@ -342,7 +342,7 @@ struct _cairo_array {
|
|||
cairo_private void
|
||||
_cairo_array_init (cairo_array_t *array, int element_size);
|
||||
|
||||
void
|
||||
cairo_private void
|
||||
_cairo_array_init_snapshot (cairo_array_t *array,
|
||||
const cairo_array_t *other);
|
||||
|
||||
|
|
@ -363,7 +363,7 @@ _cairo_array_append_multiple (cairo_array_t *array,
|
|||
const void *elements,
|
||||
int num_elements);
|
||||
|
||||
cairo_status_t
|
||||
cairo_private cairo_status_t
|
||||
_cairo_array_allocate (cairo_array_t *array,
|
||||
int num_elements,
|
||||
void **elements);
|
||||
|
|
@ -1380,13 +1380,13 @@ cairo_private cairo_status_t
|
|||
_cairo_path_fixed_init_copy (cairo_path_fixed_t *path,
|
||||
cairo_path_fixed_t *other);
|
||||
|
||||
cairo_path_fixed_t *
|
||||
cairo_private cairo_path_fixed_t *
|
||||
_cairo_path_fixed_create (void);
|
||||
|
||||
cairo_private void
|
||||
_cairo_path_fixed_fini (cairo_path_fixed_t *path);
|
||||
|
||||
void
|
||||
cairo_private void
|
||||
_cairo_path_fixed_destroy (cairo_path_fixed_t *path);
|
||||
|
||||
cairo_private cairo_status_t
|
||||
|
|
@ -1552,7 +1552,7 @@ _cairo_scaled_glyph_set_path (cairo_scaled_glyph_t *scaled_glyph,
|
|||
cairo_scaled_font_t *scaled_font,
|
||||
cairo_path_fixed_t *path);
|
||||
|
||||
cairo_status_t
|
||||
cairo_private cairo_status_t
|
||||
_cairo_scaled_glyph_lookup (cairo_scaled_font_t *scaled_font,
|
||||
unsigned long index,
|
||||
cairo_scaled_glyph_info_t info,
|
||||
|
|
@ -1818,7 +1818,7 @@ _cairo_format_from_content (cairo_content_t content);
|
|||
cairo_private cairo_content_t
|
||||
_cairo_content_from_format (cairo_format_t format);
|
||||
|
||||
cairo_surface_t *
|
||||
cairo_private cairo_surface_t *
|
||||
_cairo_image_surface_create_for_pixman_image (pixman_image_t *pixman_image,
|
||||
cairo_format_t format);
|
||||
|
||||
|
|
@ -2069,7 +2069,7 @@ _cairo_pattern_acquire_surfaces (cairo_pattern_t *src,
|
|||
cairo_surface_attributes_t *src_attributes,
|
||||
cairo_surface_attributes_t *mask_attributes);
|
||||
|
||||
cairo_status_t
|
||||
cairo_private cairo_status_t
|
||||
_cairo_pattern_get_extents (cairo_pattern_t *pattern,
|
||||
cairo_rectangle_t *extents);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue