summaryrefslogtreecommitdiffstats
path: root/gfx/cairo/quartz-remove-snapshot.patch
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /gfx/cairo/quartz-remove-snapshot.patch
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'gfx/cairo/quartz-remove-snapshot.patch')
-rw-r--r--gfx/cairo/quartz-remove-snapshot.patch62
1 files changed, 62 insertions, 0 deletions
diff --git a/gfx/cairo/quartz-remove-snapshot.patch b/gfx/cairo/quartz-remove-snapshot.patch
new file mode 100644
index 000000000..5cc2cddb4
--- /dev/null
+++ b/gfx/cairo/quartz-remove-snapshot.patch
@@ -0,0 +1,62 @@
+changeset: 42958:dd0f1f0a96b3
+user: Robert O'Callahan <robert@ocallahan.org>
+date: Tue Jun 01 11:33:05 2010 +1200
+summary: Bug 568189. Part 3: Remove snapshot backend function since it doesn't work and we may as well just fall back. r=jrmuizel
+
+diff --git a/gfx/cairo/cairo/src/cairo-quartz-surface.c b/gfx/cairo/cairo/src/cairo-quartz-surface.c
+--- a/gfx/cairo/cairo/src/cairo-quartz-surface.c
++++ b/gfx/cairo/cairo/src/cairo-quartz-surface.c
+@@ -1993,33 +1993,16 @@ _cairo_quartz_surface_acquire_source_ima
+ if (status)
+ return _cairo_error (CAIRO_STATUS_NO_MEMORY);
+
+ *image_extra = NULL;
+
+ return CAIRO_STATUS_SUCCESS;
+ }
+
+-static cairo_surface_t *
+-_cairo_quartz_surface_snapshot (void *abstract_surface)
+-{
+- cairo_int_status_t status;
+- cairo_quartz_surface_t *surface = abstract_surface;
+- cairo_image_surface_t *image;
+-
+- if (surface->imageSurfaceEquiv)
+- return NULL;
+-
+- status = _cairo_quartz_get_image (surface, &image);
+- if (unlikely (status))
+- return _cairo_surface_create_in_error (CAIRO_STATUS_NO_MEMORY);
+-
+- return &image->base;
+-}
+-
+ static void
+ _cairo_quartz_surface_release_source_image (void *abstract_surface,
+ cairo_image_surface_t *image,
+ void *image_extra)
+ {
+ cairo_surface_destroy ((cairo_surface_t *) image);
+ }
+
+@@ -2916,17 +2899,17 @@ static const struct _cairo_surface_backe
+ _cairo_quartz_surface_stroke,
+ _cairo_quartz_surface_fill,
+ #if CAIRO_HAS_QUARTZ_FONT
+ _cairo_quartz_surface_show_glyphs,
+ #else
+ NULL, /* show_glyphs */
+ #endif
+
+- _cairo_quartz_surface_snapshot,
++ NULL, /* snapshot */
+ NULL, /* is_similar */
+ NULL /* fill_stroke */
+ };
+
+ cairo_quartz_surface_t *
+ _cairo_quartz_surface_create_internal (CGContextRef cgContext,
+ cairo_content_t content,
+ unsigned int width,
+