Commit be1a8da313c3d83c454bbb5afee8e8758a073b82

Graham Asher 2003-01-14T15:53:33

Added 'const' to the first argument to FT_Matrix_Multiply.

diff --git a/include/freetype/ftglyph.h b/include/freetype/ftglyph.h
index 67a698f..e1acae7 100644
--- a/include/freetype/ftglyph.h
+++ b/include/freetype/ftglyph.h
@@ -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 );
 
 
diff --git a/src/base/ftglyph.c b/src/base/ftglyph.c
index 9f3d6fd..dbd31ea 100644
--- a/src/base/ftglyph.c
+++ b/src/base/ftglyph.c
@@ -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;