* src/truetype/ttgxvar.c (tt_set_mm_blend): Minor.

This commit is contained in:
Werner Lemberg 2018-01-27 14:39:15 +01:00
parent ef48653023
commit f438e06972
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2018-01-27 Werner Lemberg <wl@gnu.org>
* src/truetype/ttgxvar.c (tt_set_mm_blend): Minor.
2018-01-27 Werner Lemberg <wl@gnu.org>
[truetype] Better trace VF instances.

View File

@ -2440,11 +2440,12 @@
num_coords = mmvar->num_axis;
}
FT_TRACE5(( "normalized design coordinates:\n" ));
FT_TRACE5(( "TT_Set_MM_Blend:"
" normalized design coordinates:\n" ));
for ( i = 0; i < num_coords; i++ )
{
FT_TRACE5(( " %.5f\n", coords[i] / 65536.0 ));
FT_TRACE5(( " %.5f\n", coords[i] / 65536.0 ));
if ( coords[i] < -0x00010000L || coords[i] > 0x00010000L )
{
FT_TRACE1(( "TT_Set_MM_Blend: normalized design coordinate %.5f\n"