forked from minhngoc25a/freetype2
[cff]: Improve debugging output.
* src/cff/cffgload.c (cff_decoder_parse_charstrings) <cff_op_hintmask>: Implement it.
This commit is contained in:
parent
7fb3ef64a2
commit
3624110cc2
|
@ -1,3 +1,10 @@
|
|||
2010-06-11 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[cff]: Improve debugging output.
|
||||
|
||||
* src/cff/cffgload.c (cff_decoder_parse_charstrings)
|
||||
<cff_op_hintmask>: Implement it.
|
||||
|
||||
2010-06-10 Graham Asher <graham.asher@btinternet.com>
|
||||
|
||||
ftgrays: Speed up rendering of small cubic splines.
|
||||
|
|
|
@ -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" ));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue