mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-02-21 09:50:33 +01:00
Revert accidental commit.
This commit is contained in:
parent
c8a98b109a
commit
30a02c8e17
4 changed files with 10 additions and 17 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2005-02-21 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* src/cairo_pattern.c (cairo_pattern_reference):
|
||||
* src/cairo.h: Revert accidental commit.
|
||||
|
||||
2005-02-21 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* src/cairo_surface.c (_fallback_composite_trapezoids): Fix y
|
||||
|
|
|
|||
|
|
@ -172,15 +172,13 @@ cairo_pattern_create_radial (double cx0, double cy0, double radius0,
|
|||
return pattern;
|
||||
}
|
||||
|
||||
cairo_pattern_t *
|
||||
void
|
||||
cairo_pattern_reference (cairo_pattern_t *pattern)
|
||||
{
|
||||
if (pattern == NULL)
|
||||
return NULL;
|
||||
return;
|
||||
|
||||
pattern->ref_count++;
|
||||
|
||||
return pattern;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
10
src/cairo.h
10
src/cairo.h
|
|
@ -774,14 +774,6 @@ cairo_image_surface_create_for_data (char *data,
|
|||
int height,
|
||||
int stride);
|
||||
|
||||
void
|
||||
cairo_image_surface_get_data (cairo_surface_t *surface,
|
||||
char **data,
|
||||
cairo_format_t *format,
|
||||
int *width,
|
||||
int *height,
|
||||
int *stride);
|
||||
|
||||
/* Pattern creation functions */
|
||||
cairo_pattern_t *
|
||||
cairo_pattern_create_for_surface (cairo_surface_t *surface);
|
||||
|
|
@ -794,7 +786,7 @@ cairo_pattern_t *
|
|||
cairo_pattern_create_radial (double cx0, double cy0, double radius0,
|
||||
double cx1, double cy1, double radius1);
|
||||
|
||||
cairo_pattern_t *
|
||||
void
|
||||
cairo_pattern_reference (cairo_pattern_t *pattern);
|
||||
|
||||
void
|
||||
|
|
|
|||
|
|
@ -172,15 +172,13 @@ cairo_pattern_create_radial (double cx0, double cy0, double radius0,
|
|||
return pattern;
|
||||
}
|
||||
|
||||
cairo_pattern_t *
|
||||
void
|
||||
cairo_pattern_reference (cairo_pattern_t *pattern)
|
||||
{
|
||||
if (pattern == NULL)
|
||||
return NULL;
|
||||
return;
|
||||
|
||||
pattern->ref_count++;
|
||||
|
||||
return pattern;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue