aboutsummaryrefslogtreecommitdiffstats
path: root/unicode/src/lib/freetype/ftglyph.inc
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2009-07-23 14:58:51 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2009-07-23 14:58:51 +0000
commit66f499d9516f60a650a114a865687f4eb9ffaadd (patch)
tree542273eb682dc25404cb77bb1a85fffc15a8afe3 /unicode/src/lib/freetype/ftglyph.inc
parent0d954628b4a8640d71643af095bf3ba205f33a43 (diff)
downloadusdx-66f499d9516f60a650a114a865687f4eb9ffaadd.tar.gz
usdx-66f499d9516f60a650a114a865687f4eb9ffaadd.tar.xz
usdx-66f499d9516f60a650a114a865687f4eb9ffaadd.zip
some missing freetype functions added to headers
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1859 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'unicode/src/lib/freetype/ftglyph.inc')
-rw-r--r--unicode/src/lib/freetype/ftglyph.inc23
1 files changed, 23 insertions, 0 deletions
diff --git a/unicode/src/lib/freetype/ftglyph.inc b/unicode/src/lib/freetype/ftglyph.inc
index 577e448b..0d4acc99 100644
--- a/unicode/src/lib/freetype/ftglyph.inc
+++ b/unicode/src/lib/freetype/ftglyph.inc
@@ -214,6 +214,29 @@
out aglyph: FT_Glyph ): FT_Error;
cdecl; external ft_lib name 'FT_Get_Glyph';
+ (*************************************************************************)
+ (* *)
+ (* <Function> *)
+ (* FT_Glyph_Copy *)
+ (* *)
+ (* <Description> *)
+ (* A function used to copy a glyph image. Note that the created *)
+ (* @FT_Glyph object must be released with @FT_Done_Glyph. *)
+ (* *)
+ (* <Input> *)
+ (* source :: A handle to the source glyph object. *)
+ (* *)
+ (* <Output> *)
+ (* target :: A handle to the target glyph object. 0~in case of *)
+ (* error. *)
+ (* *)
+ (* <Return> *)
+ (* FreeType error code. 0~means success. *)
+ (* *)
+ function FT_Glyph_Copy(source: FT_Glyph;
+ var target: FT_Glyph ): FT_Error;
+ cdecl; external ft_lib name 'FT_Glyph_Copy';
+
{$ENDIF TYPE_DECL}
{$IFDEF TYPE_DECL}