summaryrefslogtreecommitdiffstats
path: root/abs/core/freetype2/0001-psaux-Correctly-handle-Flex-features-52846.patch
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2019-01-28 16:42:25 (GMT)
committerBritney Fransen <brfransen@gmail.com>2019-01-28 16:42:25 (GMT)
commit1bebd2abd5019e6f912a4d12626eec8516714dd7 (patch)
treeba6f4081ca7dff54714b96cf0a6d22ea3ecae9f5 /abs/core/freetype2/0001-psaux-Correctly-handle-Flex-features-52846.patch
parentdb8e236bf9bc0b23cddd4af854dd0e9f591c8895 (diff)
downloadlinhes_pkgbuild-1bebd2abd5019e6f912a4d12626eec8516714dd7.zip
linhes_pkgbuild-1bebd2abd5019e6f912a4d12626eec8516714dd7.tar.gz
linhes_pkgbuild-1bebd2abd5019e6f912a4d12626eec8516714dd7.tar.bz2
freetype2: update to 2.9.1
Diffstat (limited to 'abs/core/freetype2/0001-psaux-Correctly-handle-Flex-features-52846.patch')
-rw-r--r--abs/core/freetype2/0001-psaux-Correctly-handle-Flex-features-52846.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/abs/core/freetype2/0001-psaux-Correctly-handle-Flex-features-52846.patch b/abs/core/freetype2/0001-psaux-Correctly-handle-Flex-features-52846.patch
deleted file mode 100644
index 44630fb..0000000
--- a/abs/core/freetype2/0001-psaux-Correctly-handle-Flex-features-52846.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From cc2f3cdecff5a351e7e8961b9f2e389ab740231a Mon Sep 17 00:00:00 2001
-From: Ewald Hew <ewaldhew@gmail.com>
-Date: Wed, 10 Jan 2018 13:24:56 +0800
-Subject: [PATCH] [psaux] Correctly handle Flex features (#52846).
-
-* src/psaux/psintrp.c (cf2_interpT2CharString) <cf2_cmdVMOVETO,
-cf2_cmdHMOVETO>: Do not move if doing Flex.
----
- src/psaux/psintrp.c | 6 ++++--
- 1 file changed, 4 insertions(+), 2 deletions(-)
-
-diff --git a/src/psaux/psintrp.c b/src/psaux/psintrp.c
-index 5c0ee78..da5a8da 100644
---- a/src/psaux/psintrp.c
-+++ b/src/psaux/psintrp.c
-@@ -852,7 +852,8 @@
-
- curY = ADD_INT32( curY, cf2_stack_popFixed( opStack ) );
-
-- cf2_glyphpath_moveTo( &glyphPath, curX, curY );
-+ if ( !decoder->flex_state )
-+ cf2_glyphpath_moveTo( &glyphPath, curX, curY );
-
- break;
-
-@@ -2674,7 +2675,8 @@
-
- curX = ADD_INT32( curX, cf2_stack_popFixed( opStack ) );
-
-- cf2_glyphpath_moveTo( &glyphPath, curX, curY );
-+ if ( !decoder->flex_state )
-+ cf2_glyphpath_moveTo( &glyphPath, curX, curY );
-
- break;
-
---
-2.16.1
-