shithub: freetype+ttf2subf

Download patch

ref: 32a320625e333a7728b04a35d7953b3508b80f04
parent: 69446ddccec76a1660284ea37e6a89556e06be82
author: Werner Lemberg <[email protected]>
date: Sat Jul 16 12:39:26 EDT 2016

[truetype] Fix GETINFO bytecode instruction.

* src/truetype/ttinterp.c (Ins_GETINFO): Fix return value for
stretching information.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2016-07-16  Werner Lemberg  <[email protected]>
+
+	[truetype] Fix GETINFO bytecode instruction.
+
+	* src/truetype/ttinterp.c (Ins_GETINFO): Fix return value for
+	stretching information.
+
 2016-07-16  Behdad Esfahbod  <[email protected]>
 
 	[truetype] Make all glyphs in `Zycon' GX font work.
--- a/src/truetype/ttinterp.c
+++ b/src/truetype/ttinterp.c
@@ -7227,7 +7227,7 @@
     /* Return Bit(s): 8             */
     /*                              */
     if ( ( args[0] & 2 ) != 0 && exc->tt_metrics.rotated )
-      K |= 0x80;
+      K |= 1 << 8;
 
     /********************************/
     /* GLYPH STRETCHED              */
@@ -7235,7 +7235,7 @@
     /* Return Bit(s): 9             */
     /*                              */
     if ( ( args[0] & 4 ) != 0 && exc->tt_metrics.stretched )
-      K |= 1 << 8;
+      K |= 1 << 9;
 
     /********************************/
     /* BI-LEVEL HINTING AND         */