ref: a3b70d76bae970799f700d295cdf61bd954353a9
parent: 8c93013ca3479d1b7e702240187730cc3173f99f
author: Werner Lemberg <[email protected]>
date: Mon Jul 18 02:23:36 EDT 2016
[truetype] Make GETDATA work only for GX fonts. * src/truetype/ttinterp.c (opcode_name): Updated. (Ins_GETDATA): Only define for `TT_CONFIG_OPTION_GX_VAR_SUPPORT'. (TT_RunIns): Updated.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,12 @@
-2016-07-16 Werner Lemberg <[email protected]>
+2016-07-18 Werner Lemberg <[email protected]>
+
+ [truetype] Make GETDATA work only for GX fonts.
+
+ * src/truetype/ttinterp.c (opcode_name): Updated.
+ (Ins_GETDATA): Only define for `TT_CONFIG_OPTION_GX_VAR_SUPPORT'.
+ (TT_RunIns): Updated.
+
+2016-07-17 Werner Lemberg <[email protected]>
[truetype] Add support for Apple's
--- a/src/truetype/ttinterp.c
+++ b/src/truetype/ttinterp.c
@@ -1068,10 +1068,11 @@
"7 INS_$90",
#ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT
"6 GETVAR",
+ "7 GETDATA",
#else
"7 INS_$91",
+ "7 INS_$92",
#endif
- "7 GETDATA",
"7 INS_$93",
"7 INS_$94",
"7 INS_$95",
@@ -7426,9 +7427,7 @@
args[i] = coords[i] >> 2; /* convert 16.16 to 2.14 format */
}
-#endif /* TT_CONFIG_OPTION_GX_VAR_SUPPORT */
-
/*************************************************************************/
/* */
/* GETDATA[]: no idea what this is good for */
@@ -7444,7 +7443,9 @@
args[0] = 17;
}
+#endif /* TT_CONFIG_OPTION_GX_VAR_SUPPORT */
+
static void
Ins_UNKNOWN( TT_ExecContext exc )
{
@@ -8204,11 +8205,17 @@
else
Ins_UNKNOWN( exc );
break;
-#endif
case 0x92:
- Ins_GETDATA( args );
+ /* there is at least one MS font (LaoUI.ttf version 5.01) that */
+ /* uses IDEFs for 0x91 and 0x92; for this reason we activate */
+ /* GETDATA for GX fonts only, similar to GETVARIATION */
+ if ( exc->face->blend )
+ Ins_GETDATA( args );
+ else
+ Ins_UNKNOWN( exc );
break;
+#endif
default:
if ( opcode >= 0xE0 )