Added 'const' to the first argument to FT_Matrix_Multiply.

This commit is contained in:
Graham Asher 2003-01-14 15:53:33 +00:00
parent a2b8e0b479
commit e8936f1f38
2 changed files with 2 additions and 2 deletions

View File

@ -483,7 +483,7 @@ FT_BEGIN_HEADER
/* The result is undefined if either `a' or `b' is zero. */
/* */
FT_EXPORT( void )
FT_Matrix_Multiply( FT_Matrix* a,
FT_Matrix_Multiply( const FT_Matrix* a,
FT_Matrix* b );

View File

@ -56,7 +56,7 @@
/* documentation is in ftglyph.h */
FT_EXPORT_DEF( void )
FT_Matrix_Multiply( FT_Matrix* a,
FT_Matrix_Multiply( const FT_Matrix* a,
FT_Matrix* b )
{
FT_Fixed xx, xy, yx, yy;