[cairo-commit] cairo/src cairo-font.c, 1.52, 1.53 cairo-surface.c, 1.78, 1.79

Carl Worth commit at pdx.freedesktop.org
Fri Jul 15 13:59:49 PDT 2005


Committed by: cworth

Update of /cvs/cairo/cairo/src
In directory gabe:/tmp/cvs-serv32312/src

Modified Files:
	cairo-font.c cairo-surface.c 
Log Message:

        * src/cairo-font.c:
        * src/cairo-surface.c: Remove cairo_private qualifier from .c
        files, (we only need it in the .h files).


Index: cairo-font.c
===================================================================
RCS file: /cvs/cairo/cairo/src/cairo-font.c,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -d -r1.52 -r1.53
--- cairo-font.c	13 Jul 2005 18:34:37 -0000	1.52
+++ cairo-font.c	15 Jul 2005 20:59:47 -0000	1.53
@@ -386,7 +386,7 @@
  * Return value: a newly created #cairo_font_face_t, destroy with
  *  cairo_font_face_destroy()
  **/
-cairo_private cairo_font_face_t *
+cairo_font_face_t *
 _cairo_simple_font_face_create (const char          *family, 
 				cairo_font_slant_t   slant, 
 				cairo_font_weight_t  weight)

Index: cairo-surface.c
===================================================================
RCS file: /cvs/cairo/cairo/src/cairo-surface.c,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -d -r1.78 -r1.79
--- cairo-surface.c	8 Jul 2005 17:12:29 -0000	1.78
+++ cairo-surface.c	15 Jul 2005 20:59:47 -0000	1.79
@@ -300,7 +300,7 @@
  * %CAIRO_INT_STATUS_UNSUPPORTED if an image cannot be retrieved for the specified
  * surface. Or %CAIRO_STATUS_NO_MEMORY.
  **/
-cairo_private cairo_status_t
+cairo_status_t
 _cairo_surface_acquire_source_image (cairo_surface_t         *surface,
 				     cairo_image_surface_t  **image_out,
 				     void                   **image_extra)
@@ -317,7 +317,7 @@
  * 
  * Releases any resources obtained with _cairo_surface_acquire_source_image()
  **/
-cairo_private void
+void
 _cairo_surface_release_source_image (cairo_surface_t        *surface,
 				     cairo_image_surface_t  *image,
 				     void                   *image_extra)
@@ -670,7 +670,7 @@
     return _fallback_fill_rectangles (surface, operator, color, rects, num_rects);
 }
 
-cairo_private cairo_int_status_t
+cairo_int_status_t
 _cairo_surface_fill_path (cairo_operator_t	operator,
 			  cairo_pattern_t	*pattern,
 			  cairo_surface_t	*dst,
@@ -824,7 +824,7 @@
  * verify that the correct clip is set in the surface before
  * invoking any surface drawing function
  */
-cairo_private unsigned int
+unsigned int
 _cairo_surface_get_current_clip_serial (cairo_surface_t *surface)
 {
     return surface->current_clip_serial;
@@ -839,7 +839,7 @@
  * As zero is reserved for the special no-clipping case,
  * this function will not return that.
  */
-cairo_private unsigned int
+unsigned int
 _cairo_surface_allocate_clip_serial (cairo_surface_t *surface)
 {
     unsigned int    serial;
@@ -858,7 +858,7 @@
  * unclipped.  It also sets the clip serial number
  * to zero.
  */
-cairo_private cairo_status_t
+cairo_status_t
 _cairo_surface_reset_clip (cairo_surface_t *surface)
 {
     cairo_status_t  status;
@@ -895,7 +895,7 @@
  * the specified region and sets the surface clipping
  * serial number to the associated serial number.
  */
-cairo_private cairo_status_t
+cairo_status_t
 _cairo_surface_set_clip_region (cairo_surface_t	    *surface,
 				pixman_region16_t   *region,
 				unsigned int	    serial)
@@ -909,7 +909,7 @@
     return surface->backend->set_clip_region (surface, region);
 }
 
-cairo_private cairo_int_status_t
+cairo_int_status_t
 _cairo_surface_intersect_clip_path (cairo_surface_t    *surface,
 				    cairo_path_fixed_t *path,
 				    cairo_fill_rule_t   fill_rule,
@@ -957,7 +957,7 @@
  * Sets the clipping path to be the intersection of the current
  * clipping path of the surface and the given path.
  **/
-cairo_private cairo_status_t
+cairo_status_t
 _cairo_surface_set_clip_path (cairo_surface_t	*surface,
 			      cairo_clip_path_t	*clip_path,
 			      unsigned int	serial)




More information about the cairo-commit mailing list