mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-05 05:40:18 +01:00
Fix x2/x1 typo.
This commit is contained in:
parent
f3f63f3924
commit
d4ae84f397
3 changed files with 7 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2005-02-12 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* src/cairo_gstate.c (_cairo_gstate_clip_and_composite_trapezoids): Fix
|
||||
x2/x1 typo.
|
||||
|
||||
2005-02-12 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* src/cairo.c (cairo_text_extents): Return all-zero extents if
|
||||
|
|
|
|||
|
|
@ -1589,7 +1589,7 @@ _cairo_gstate_clip_and_composite_trapezoids (cairo_gstate_t *gstate,
|
|||
|
||||
extents.x = intersection_extents->x1;
|
||||
extents.y = intersection_extents->y1;
|
||||
extents.width = intersection_extents->x2 - intersection_extents->x2;
|
||||
extents.width = intersection_extents->x2 - intersection_extents->x1;
|
||||
extents.height = intersection_extents->y2 - intersection_extents->y1;
|
||||
bail3:
|
||||
pixman_region_destroy (intersection);
|
||||
|
|
|
|||
|
|
@ -1589,7 +1589,7 @@ _cairo_gstate_clip_and_composite_trapezoids (cairo_gstate_t *gstate,
|
|||
|
||||
extents.x = intersection_extents->x1;
|
||||
extents.y = intersection_extents->y1;
|
||||
extents.width = intersection_extents->x2 - intersection_extents->x2;
|
||||
extents.width = intersection_extents->x2 - intersection_extents->x1;
|
||||
extents.height = intersection_extents->y2 - intersection_extents->y1;
|
||||
bail3:
|
||||
pixman_region_destroy (intersection);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue