summaryrefslogtreecommitdiff
path: root/include/freetype
diff options
context:
space:
mode:
authorSuzuki, Toshiya (鈴木俊哉) <mpsuzuki@hiroshima-u.ac.jp>2009-01-09 11:11:53 +0000
committerSuzuki, Toshiya (鈴木俊哉) <mpsuzuki@hiroshima-u.ac.jp>2009-01-09 11:11:53 +0000
commit759c07d149cb97f9cb3233e291339b98194e3585 (patch)
tree9a35dd13ac834f5e5f056557330aaa8f3e1de389 /include/freetype
parent68e16e010534bbb32e29d719864fbedde5c0a2a1 (diff)
downloadfreetype2-759c07d149cb97f9cb3233e291339b98194e3585.tar.gz
load_flags of FT_Get_Advance(), FT_Get_Advances() and backends are declared as FT_Int32 to match the flags of FT_Load_Glyph()
Diffstat (limited to 'include/freetype')
-rw-r--r--include/freetype/ftadvanc.h4
-rw-r--r--include/freetype/internal/ftdriver.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/include/freetype/ftadvanc.h b/include/freetype/ftadvanc.h
index 5fddf187e..b2451bec4 100644
--- a/include/freetype/ftadvanc.h
+++ b/include/freetype/ftadvanc.h
@@ -116,7 +116,7 @@ FT_BEGIN_HEADER
FT_EXPORT( FT_Error )
FT_Get_Advance( FT_Face face,
FT_UInt gindex,
- FT_UInt32 load_flags,
+ FT_Int32 load_flags,
FT_Fixed *padvance );
@@ -165,7 +165,7 @@ FT_BEGIN_HEADER
FT_Get_Advances( FT_Face face,
FT_UInt start,
FT_UInt count,
- FT_UInt32 load_flags,
+ FT_Int32 load_flags,
FT_Fixed *padvances );
/* */
diff --git a/include/freetype/internal/ftdriver.h b/include/freetype/internal/ftdriver.h
index ffb4de3dd..854abad08 100644
--- a/include/freetype/internal/ftdriver.h
+++ b/include/freetype/internal/ftdriver.h
@@ -108,7 +108,7 @@ FT_BEGIN_HEADER
(*FT_Face_GetAdvancesFunc)( FT_Face face,
FT_UInt first,
FT_UInt count,
- FT_UInt32 flags,
+ FT_Int32 flags,
FT_Fixed* advances );