mirror of https://github.com/freetype/freetype
* src/truetype/ttgxvar.c (tt_set_mm_blend): Minor.
This commit is contained in:
parent
ef48653023
commit
f438e06972
|
@ -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.
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue