shithub: freetype+ttf2subf

Download patch

ref: 9d04fa7015aa1b14e906a1599d09280ab9938874
parent: 2e4188d83364219d0ff3a207fa7d3980844dded4
author: Werner Lemberg <[email protected]>
date: Sun May 28 03:57:24 EDT 2017

* include/freetype/internal/ftcalc.h (FLOAT_TO_FIXED): Remove.

This macro is not used.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2017-05-28  Werner Lemberg  <[email protected]>
 
+	* include/freetype/internal/ftcalc.h (FLOAT_TO_FIXED): Remove.
+
+	This macro is not used.
+
+2017-05-28  Werner Lemberg  <[email protected]>
+
 	[cff] s/cf2_floatToFixed/cf2_doubleToFixed/.
 
 	The new name better describes what the macro actually does;
--- a/include/freetype/internal/ftcalc.h
+++ b/include/freetype/internal/ftcalc.h
@@ -403,7 +403,6 @@
 #define INT_TO_F2DOT14( x )    ( (FT_Long)(x) << 14 )
 #define INT_TO_FIXED( x )      ( (FT_Long)(x) << 16 )
 #define F2DOT14_TO_FIXED( x )  ( (FT_Long)(x) << 2  )
-#define FLOAT_TO_FIXED( x )    ( (FT_Long)( x * 65536.0 ) )
 #define FIXED_TO_INT( x )      ( FT_RoundFix( x ) >> 16 )
 
 #define ROUND_F26DOT6( x )     ( x >= 0 ? (    ( (x) + 32 ) & -64 )     \