diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /gfx/cairo/fix-ps-output.patch | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'gfx/cairo/fix-ps-output.patch')
-rw-r--r-- | gfx/cairo/fix-ps-output.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gfx/cairo/fix-ps-output.patch b/gfx/cairo/fix-ps-output.patch new file mode 100644 index 0000000000..b325f0bc52 --- /dev/null +++ b/gfx/cairo/fix-ps-output.patch @@ -0,0 +1,19 @@ +# HG changeset patch +# User Jeff Muizelaar <jmuizelaar@mozilla.com> +# Date 1276629019 14400 +# Node ID b5eb246c152dedb895d3010eb7192f88cce51146 +# Parent 792cd3e8aa59b24c333f2c90f938beda361b3336 +cairo: PS: Add missing 'q' when resetting clip path + +diff --git a/gfx/cairo/cairo/src/cairo-ps-surface.c b/gfx/cairo/cairo/src/cairo-ps-surface.c +--- a/gfx/cairo/cairo/src/cairo-ps-surface.c ++++ b/gfx/cairo/cairo/src/cairo-ps-surface.c +@@ -3696,7 +3696,7 @@ _cairo_ps_surface_set_paginated_mode (vo + if (surface->clipper.clip.path != NULL) { + status = _cairo_pdf_operators_flush (&surface->pdf_operators); + +- _cairo_output_stream_printf (surface->stream, "Q\n"); ++ _cairo_output_stream_printf (surface->stream, "Q q\n"); + _cairo_surface_clipper_reset (&surface->clipper); + } + } |