Remove `FT_SqrtFixed' function.

It's no longer used.

* include/freetype/internal/ftcalc.h, src/base/ftcalc.c: Do it.
This commit is contained in:
Werner Lemberg 2013-08-27 21:36:03 +02:00
parent 71c0ad6520
commit bcd8c0b0eb
3 changed files with 17 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2013-08-27 Werner Lemberg <wl@gnu.org>
Remove `FT_SqrtFixed' function.
It's no longer used.
* include/freetype/internal/ftcalc.h, src/base/ftcalc.c: Do it.
2013-08-27 Werner Lemberg <wl@gnu.org> 2013-08-27 Werner Lemberg <wl@gnu.org>
[autofit] While tracing, report script names instead of ID values. [autofit] While tracing, report script names instead of ID values.

View File

@ -27,10 +27,12 @@
FT_BEGIN_HEADER FT_BEGIN_HEADER
#if 0
/*************************************************************************/ /*************************************************************************/
/* */ /* */
/* <Function> */ /* <Function> */
/* FT_FixedSqrt */ /* FT_SqrtFixed */
/* */ /* */
/* <Description> */ /* <Description> */
/* Computes the square root of a 16.16 fixed-point value. */ /* Computes the square root of a 16.16 fixed-point value. */
@ -47,6 +49,8 @@ FT_BEGIN_HEADER
FT_BASE( FT_Int32 ) FT_BASE( FT_Int32 )
FT_SqrtFixed( FT_Int32 x ); FT_SqrtFixed( FT_Int32 x );
#endif /* 0 */
/*************************************************************************/ /*************************************************************************/
/* */ /* */

View File

@ -816,6 +816,8 @@
} }
#if 0
/* documentation is in ftcalc.h */ /* documentation is in ftcalc.h */
FT_BASE_DEF( FT_Int32 ) FT_BASE_DEF( FT_Int32 )
@ -850,6 +852,8 @@
return (FT_Int32)root; return (FT_Int32)root;
} }
#endif /* 0 */
/* documentation is in ftcalc.h */ /* documentation is in ftcalc.h */