diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-11-10 15:43:51 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-11-10 15:43:51 -0500 |
commit | b0e23e79e72b7892b826fabea4f9e02c421d2861 (patch) | |
tree | 26f20aea660514c213a3ae942eab222e5ccebde3 /gfx/cairo/disable-previous-scaled-font-cache.patch | |
parent | 03590a6711d601ef3ddb48787e9f3f556705b5db (diff) | |
parent | b00601953bade944cd6df9cde6fcdd1f10d76feb (diff) | |
download | UXP-b0e23e79e72b7892b826fabea4f9e02c421d2861.tar UXP-b0e23e79e72b7892b826fabea4f9e02c421d2861.tar.gz UXP-b0e23e79e72b7892b826fabea4f9e02c421d2861.tar.lz UXP-b0e23e79e72b7892b826fabea4f9e02c421d2861.tar.xz UXP-b0e23e79e72b7892b826fabea4f9e02c421d2861.zip |
Merge branch 'master' into mailnews-work
Diffstat (limited to 'gfx/cairo/disable-previous-scaled-font-cache.patch')
-rw-r--r-- | gfx/cairo/disable-previous-scaled-font-cache.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gfx/cairo/disable-previous-scaled-font-cache.patch b/gfx/cairo/disable-previous-scaled-font-cache.patch deleted file mode 100644 index afeac5ec8..000000000 --- a/gfx/cairo/disable-previous-scaled-font-cache.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff --git a/gfx/cairo/cairo/src/cairo.c b/gfx/cairo/cairo/src/cairo.c ---- a/gfx/cairo/cairo/src/cairo.c -+++ b/gfx/cairo/cairo/src/cairo.c -@@ -3201,8 +3201,12 @@ cairo_set_scaled_font (cairo_t - - _cairo_gstate_set_font_options (cr->gstate, &scaled_font->options); - -+ /* XXX: Mozilla code assumes that the ctm of a scaled font doesn't need to -+ * match the context ctm. This assumption breaks the previous_scaled_font -+ * cache. So we avoid using the cache for now. - if (was_previous) - cr->gstate->scaled_font = cairo_scaled_font_reference ((cairo_scaled_font_t *) scaled_font); -+ */ - - return; - |