mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-05 08:48:00 +02:00
PS: Fix regression - missing page content in EPS output
https://bugs.freedesktop.org/show_bug.cgi?id=24688
This commit is contained in:
parent
e7c5f47043
commit
d3746448d7
1 changed files with 0 additions and 9 deletions
|
|
@ -3517,9 +3517,6 @@ _cairo_ps_surface_paint (void *abstract_surface,
|
|||
if (unlikely (status))
|
||||
return status;
|
||||
|
||||
if (! _cairo_rectangle_intersect (&extents.bounded, &surface->page_bbox))
|
||||
return CAIRO_STATUS_SUCCESS;
|
||||
|
||||
if (surface->paginated_mode == CAIRO_PAGINATED_MODE_ANALYZE)
|
||||
return _cairo_ps_surface_analyze_operation (surface, op, source, &extents.bounded);
|
||||
|
||||
|
|
@ -3588,9 +3585,6 @@ _cairo_ps_surface_stroke (void *abstract_surface,
|
|||
if (unlikely (status))
|
||||
return status;
|
||||
|
||||
if (! _cairo_rectangle_intersect (&extents.bounded, &surface->page_bbox))
|
||||
return CAIRO_STATUS_SUCCESS;
|
||||
|
||||
/* use the more accurate extents */
|
||||
if (extents.is_bounded) {
|
||||
status = _cairo_path_fixed_stroke_extents (path, style,
|
||||
|
|
@ -3652,9 +3646,6 @@ _cairo_ps_surface_fill (void *abstract_surface,
|
|||
if (unlikely (status))
|
||||
return status;
|
||||
|
||||
if (! _cairo_rectangle_intersect (&extents.bounded, &surface->page_bbox))
|
||||
return CAIRO_STATUS_SUCCESS;
|
||||
|
||||
/* use the more accurate extents */
|
||||
if (extents.is_bounded) {
|
||||
_cairo_path_fixed_fill_extents (path,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue