diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /gfx/cairo/xlib-flush-glyphs.patch | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-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/xlib-flush-glyphs.patch')
-rw-r--r-- | gfx/cairo/xlib-flush-glyphs.patch | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/gfx/cairo/xlib-flush-glyphs.patch b/gfx/cairo/xlib-flush-glyphs.patch new file mode 100644 index 000000000..78a19d0dd --- /dev/null +++ b/gfx/cairo/xlib-flush-glyphs.patch @@ -0,0 +1,66 @@ +diff --git a/gfx/cairo/cairo/src/cairo-xlib-surface.c b/gfx/cairo/cairo/src/cairo-xlib-surface.c +index f0de3c7..e24c962 100644 +--- a/gfx/cairo/cairo/src/cairo-xlib-surface.c ++++ b/gfx/cairo/cairo/src/cairo-xlib-surface.c +@@ -50,35 +50,36 @@ + #include "cairo-xlib-private.h" + #include "cairo-xlib-surface-private.h" + #include "cairo-clip-private.h" + #include "cairo-error-private.h" + #include "cairo-scaled-font-private.h" + #include "cairo-surface-snapshot-private.h" + #include "cairo-surface-subsurface-private.h" + #include "cairo-region-private.h" ++#include "cairo-xlib-xrender-private.h" + + #include <X11/Xutil.h> /* for XDestroyImage */ ++#include <X11/Xlibint.h> /* for access to XDisplay's innards */ + + #define XLIB_COORD_MAX 32767 + + #define DEBUG 0 + + #if DEBUG + #define UNSUPPORTED(reason) \ + fprintf (stderr, \ + "cairo-xlib: hit unsupported operation %s(), line %d: %s\n", \ + __FUNCTION__, __LINE__, reason), \ + CAIRO_INT_STATUS_UNSUPPORTED + #else + #define UNSUPPORTED(reason) CAIRO_INT_STATUS_UNSUPPORTED + #endif + + #if DEBUG +-#include <X11/Xlibint.h> + static void CAIRO_PRINTF_FORMAT (2, 3) + _x_bread_crumb (Display *dpy, + const char *fmt, + ...) + { + xReq *req; + char buf[2048]; + unsigned int len, len_dwords; +@@ -4313,16 +4314,23 @@ _cairo_xlib_surface_add_glyph (cairo_xlib_display_t *display, + } + break; + default: + ASSERT_NOT_REACHED; + break; + } + /* XXX assume X server wants pixman padding. Xft assumes this as well */ + ++ struct _XDisplay *dpy = (struct _XDisplay *) display->display; ++ int req_length = sz_xRenderAddGlyphsReq + 4; ++ if (req_length & 3) ++ req_length += 4 - (req_length & 3); ++ if (dpy->bufptr + req_length > dpy->bufmax) ++ XFlush (display->display); ++ + XRenderAddGlyphs (display->display, glyphset_info->glyphset, + &glyph_index, &glyph_info, 1, + (char *) data, + glyph_surface->stride * glyph_surface->height); + + if (data != glyph_surface->data) + free (data); + |