1999-12-17 00:11:37 +01:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* ttgload.h */
|
|
|
|
/* */
|
|
|
|
/* TrueType Glyph Loader (specification). */
|
|
|
|
/* */
|
2000-06-12 21:36:41 +02:00
|
|
|
/* Copyright 1996-2000 by */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
2000-06-12 21:36:41 +02:00
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
|
|
|
|
/* this file you indicate that you have read the license and */
|
|
|
|
/* understand and accept it fully. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef TTGLOAD_H
|
|
|
|
#define TTGLOAD_H
|
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_SOURCE_FILE(truetype,ttobjs.h)
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-07-08 02:41:13 +02:00
|
|
|
#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
|
2000-12-08 03:42:29 +01:00
|
|
|
#include FT_SOURCE_FILE(truetype,ttinterp.h)
|
1999-12-17 00:11:37 +01:00
|
|
|
#endif
|
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
FT_BEGIN_HEADER
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-11-04 02:55:49 +01:00
|
|
|
FT_LOCAL
|
1999-12-17 00:11:37 +01:00
|
|
|
void TT_Get_Metrics( TT_HoriHeader* header,
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_UInt index,
|
|
|
|
FT_Short* bearing,
|
|
|
|
FT_UShort* advance );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-11-04 02:55:49 +01:00
|
|
|
FT_LOCAL
|
2000-06-25 06:49:19 +02:00
|
|
|
void TT_Init_Glyph_Loading( TT_Face face );
|
|
|
|
|
2000-11-04 02:55:49 +01:00
|
|
|
FT_LOCAL
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Error TT_Load_Glyph( TT_Size size,
|
1999-12-17 00:11:37 +01:00
|
|
|
TT_GlyphSlot glyph,
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_UShort glyph_index,
|
|
|
|
FT_UInt load_flags );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
FT_END_HEADER
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
#endif /* TTGLOAD_H */
|
|
|
|
|
|
|
|
|
|
|
|
/* END */
|