Remove references to repeat and matrix fields that no longer exist.

This commit is contained in:
Carl Worth 2005-06-17 23:22:20 +00:00
parent 92222f8bca
commit 3b8da5f213
4 changed files with 28 additions and 7 deletions

View file

@ -1,3 +1,8 @@
2005-06-17 Carl Worth <cworth@cworth.org>
* src/cairo-xcb-surface.c (_get_image_surface): Remove references
to repeat and matrix fields that no longer exist.
2005-06-17 Owen Taylor <otaylor@redhat.com>
* src/cairo-xcb-surface.c (_get_image_surface)

View file

@ -123,9 +123,9 @@ cairo_pattern_t
</para>
@pattern:
@Returns:
<!-- # Unused Parameters # -->
@matrix:
<!-- # Unused Parameters # -->
@Returns:
<!-- ##### ENUM cairo_extend_t ##### -->

View file

@ -863,9 +863,9 @@ Drawing contexts.
</para>
@cr:
@Returns:
<!-- # Unused Parameters # -->
@matrix:
<!-- # Unused Parameters # -->
@Returns:
<!-- ##### FUNCTION cairo_get_target ##### -->
@ -977,6 +977,25 @@ Drawing contexts.
@Returns:
<!-- ##### USER_FUNCTION cairo_error_notify_func_t ##### -->
<para>
</para>
@closure:
@status:
<!-- ##### FUNCTION cairo_set_error_notify ##### -->
<para>
</para>
@cr:
@error_notify:
@closure:
<!-- ##### ENUM cairo_filter_t ##### -->
<para>

View file

@ -520,9 +520,6 @@ _get_image_surface (cairo_xcb_surface_t *surface,
/* Let the surface take ownership of the data */
_cairo_image_surface_assume_ownership_of_data (image);
_cairo_image_surface_set_repeat (image, surface->base.repeat);
_cairo_image_surface_set_matrix (image, &(surface->base.matrix));
*image_out = image;
return CAIRO_STATUS_SUCCESS;
}