shithub: freetype+ttf2subf

Download patch

ref: 3624110cc25c1da42a151fcca6fe501854dd23ef
parent: 7fb3ef64a24489189113f693696eaf935f500c3f
author: Werner Lemberg <[email protected]>
date: Fri Jun 11 19:00:22 EDT 2010

[cff]: Improve debugging output.

* src/cff/cffgload.c (cff_decoder_parse_charstrings)
<cff_op_hintmask>: Implement it.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-06-11  Werner Lemberg  <[email protected]>
+
+	[cff]: Improve debugging output.
+
+	* src/cff/cffgload.c (cff_decoder_parse_charstrings)
+	<cff_op_hintmask>: Implement it.
+
 2010-06-10  Graham Asher  <[email protected]>
 
 	ftgrays: Speed up rendering of small cubic splines.
--- a/src/cff/cffgload.c
+++ b/src/cff/cffgload.c
@@ -1357,12 +1357,12 @@
             FT_UInt maskbyte;
 
 
-            FT_TRACE4(( " (maskbytes: " ));
+            FT_TRACE4(( " (maskbytes:" ));
 
             for ( maskbyte = 0;
                   maskbyte < (FT_UInt)(( decoder->num_hints + 7 ) >> 3);
                   maskbyte++, ip++ )
-              FT_TRACE4(( "0x%02X", *ip ));
+              FT_TRACE4(( " 0x%02X", *ip ));
 
             FT_TRACE4(( ")\n" ));
           }