mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-02-10 16:00:25 +01:00
Add cairo_private to several function prototypes that were missing it.
This commit is contained in:
parent
a391bb451a
commit
cedf233052
5 changed files with 27 additions and 19 deletions
|
|
@ -1,3 +1,11 @@
|
|||
2005-08-09 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* src/cairo-arc-private.h:
|
||||
* src/cairo-ft-private.h:
|
||||
* src/cairo-meta-surface-private.h:
|
||||
* src/cairoint.h: Add cairo_private to several function prototypes
|
||||
that were missing it.
|
||||
|
||||
2005-08-09 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* ROADMAP: Note that sane clipping is done now. Add release
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@
|
|||
|
||||
#include "cairoint.h"
|
||||
|
||||
void
|
||||
cairo_private void
|
||||
_cairo_arc_path (cairo_t *cr,
|
||||
double xc,
|
||||
double yc,
|
||||
|
|
@ -46,7 +46,7 @@ _cairo_arc_path (cairo_t *cr,
|
|||
double angle1,
|
||||
double angle2);
|
||||
|
||||
void
|
||||
cairo_private void
|
||||
_cairo_arc_path_negative (cairo_t *cr,
|
||||
double xc,
|
||||
double yc,
|
||||
|
|
|
|||
|
|
@ -46,10 +46,10 @@ CAIRO_BEGIN_DECLS
|
|||
|
||||
typedef struct _cairo_ft_unscaled_font cairo_ft_unscaled_font_t;
|
||||
|
||||
cairo_bool_t
|
||||
cairo_private cairo_bool_t
|
||||
_cairo_unscaled_font_is_ft (cairo_unscaled_font_t *unscaled_font);
|
||||
|
||||
cairo_bool_t
|
||||
cairo_private cairo_bool_t
|
||||
_cairo_scaled_font_is_ft (cairo_scaled_font_t *scaled_font);
|
||||
|
||||
/* These functions are needed by the PDF backend, which needs to keep track of the
|
||||
|
|
|
|||
|
|
@ -145,10 +145,10 @@ typedef struct _cairo_meta_surface {
|
|||
cairo_array_t commands;
|
||||
} cairo_meta_surface_t;
|
||||
|
||||
cairo_surface_t *
|
||||
cairo_private cairo_surface_t *
|
||||
_cairo_meta_surface_create (double width, double height);
|
||||
|
||||
cairo_int_status_t
|
||||
cairo_private cairo_int_status_t
|
||||
_cairo_meta_surface_replay (cairo_surface_t *surface,
|
||||
cairo_surface_t *target);
|
||||
|
||||
|
|
|
|||
|
|
@ -1263,7 +1263,7 @@ cairo_private cairo_status_t
|
|||
_cairo_gstate_set_font_size (cairo_gstate_t *gstate,
|
||||
double size);
|
||||
|
||||
void
|
||||
cairo_private void
|
||||
_cairo_gstate_get_font_matrix (cairo_gstate_t *gstate,
|
||||
cairo_matrix_t *matrix);
|
||||
|
||||
|
|
@ -1271,7 +1271,7 @@ cairo_private cairo_status_t
|
|||
_cairo_gstate_set_font_matrix (cairo_gstate_t *gstate,
|
||||
const cairo_matrix_t *matrix);
|
||||
|
||||
void
|
||||
cairo_private void
|
||||
_cairo_gstate_get_font_options (cairo_gstate_t *gstate,
|
||||
cairo_font_options_t *options);
|
||||
|
||||
|
|
@ -1316,7 +1316,7 @@ _cairo_gstate_glyph_path (cairo_gstate_t *gstate,
|
|||
int num_glyphs,
|
||||
cairo_path_fixed_t *path);
|
||||
|
||||
cairo_bool_t
|
||||
cairo_private cairo_bool_t
|
||||
_cairo_operator_bounded (cairo_operator_t operator);
|
||||
|
||||
/* cairo_color.c */
|
||||
|
|
@ -1457,33 +1457,33 @@ _cairo_path_fixed_init_copy (cairo_path_fixed_t *path,
|
|||
cairo_private void
|
||||
_cairo_path_fixed_fini (cairo_path_fixed_t *path);
|
||||
|
||||
cairo_status_t
|
||||
cairo_private cairo_status_t
|
||||
_cairo_path_fixed_move_to (cairo_path_fixed_t *path,
|
||||
cairo_fixed_t x,
|
||||
cairo_fixed_t y);
|
||||
|
||||
cairo_status_t
|
||||
cairo_private cairo_status_t
|
||||
_cairo_path_fixed_rel_move_to (cairo_path_fixed_t *path,
|
||||
cairo_fixed_t dx,
|
||||
cairo_fixed_t dy);
|
||||
|
||||
cairo_status_t
|
||||
cairo_private cairo_status_t
|
||||
_cairo_path_fixed_line_to (cairo_path_fixed_t *path,
|
||||
cairo_fixed_t x,
|
||||
cairo_fixed_t y);
|
||||
|
||||
cairo_status_t
|
||||
cairo_private cairo_status_t
|
||||
_cairo_path_fixed_rel_line_to (cairo_path_fixed_t *path,
|
||||
cairo_fixed_t dx,
|
||||
cairo_fixed_t dy);
|
||||
|
||||
cairo_status_t
|
||||
cairo_private cairo_status_t
|
||||
_cairo_path_fixed_curve_to (cairo_path_fixed_t *path,
|
||||
cairo_fixed_t x0, cairo_fixed_t y0,
|
||||
cairo_fixed_t x1, cairo_fixed_t y1,
|
||||
cairo_fixed_t x2, cairo_fixed_t y2);
|
||||
|
||||
cairo_status_t
|
||||
cairo_private cairo_status_t
|
||||
_cairo_path_fixed_rel_curve_to (cairo_path_fixed_t *path,
|
||||
cairo_fixed_t dx0, cairo_fixed_t dy0,
|
||||
cairo_fixed_t dx1, cairo_fixed_t dy1,
|
||||
|
|
@ -1492,7 +1492,7 @@ _cairo_path_fixed_rel_curve_to (cairo_path_fixed_t *path,
|
|||
cairo_private cairo_status_t
|
||||
_cairo_path_fixed_close_path (cairo_path_fixed_t *path);
|
||||
|
||||
cairo_status_t
|
||||
cairo_private cairo_status_t
|
||||
_cairo_path_fixed_get_current_point (cairo_path_fixed_t *path,
|
||||
cairo_fixed_t *x,
|
||||
cairo_fixed_t *y);
|
||||
|
|
@ -1619,7 +1619,7 @@ _cairo_surface_composite_trapezoids (cairo_operator_t operator,
|
|||
cairo_trapezoid_t *traps,
|
||||
int ntraps);
|
||||
|
||||
cairo_status_t
|
||||
cairo_private cairo_status_t
|
||||
_cairo_surface_clip_and_composite_trapezoids (cairo_pattern_t *src,
|
||||
cairo_operator_t operator,
|
||||
cairo_surface_t *dst,
|
||||
|
|
@ -1704,7 +1704,7 @@ _cairo_surface_show_glyphs (cairo_scaled_font_t *scaled_font,
|
|||
const cairo_glyph_t *glyphs,
|
||||
int num_glyphs);
|
||||
|
||||
void
|
||||
cairo_private void
|
||||
_cairo_surface_composite_fixup_unbounded (cairo_surface_t *dst,
|
||||
cairo_surface_attributes_t *src_attr,
|
||||
int src_width,
|
||||
|
|
@ -2015,7 +2015,7 @@ _cairo_output_stream_get_position (cairo_output_stream_t *status);
|
|||
cairo_private cairo_status_t
|
||||
_cairo_output_stream_get_status (cairo_output_stream_t *stream);
|
||||
|
||||
cairo_output_stream_t *
|
||||
cairo_private cairo_output_stream_t *
|
||||
_cairo_output_stream_create_for_file (const char *filename);
|
||||
|
||||
cairo_private void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue