/src/freetype/src/type1/t1gload.h

https://bitbucket.org/cabalistic/ogredeps/ · C++ Header · 53 lines · 21 code · 15 blank · 17 comment · 0 complexity · bd95a5145b30b58d03e49ba90468dd44 MD5 · raw file

  1. /***************************************************************************/
  2. /* */
  3. /* t1gload.h */
  4. /* */
  5. /* Type 1 Glyph Loader (specification). */
  6. /* */
  7. /* Copyright 1996-2001, 2002, 2003, 2008, 2011 by */
  8. /* David Turner, Robert Wilhelm, and Werner Lemberg. */
  9. /* */
  10. /* This file is part of the FreeType project, and may only be used, */
  11. /* modified, and distributed under the terms of the FreeType project */
  12. /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
  13. /* this file you indicate that you have read the license and */
  14. /* understand and accept it fully. */
  15. /* */
  16. /***************************************************************************/
  17. #ifndef __T1GLOAD_H__
  18. #define __T1GLOAD_H__
  19. #include <ft2build.h>
  20. #include "t1objs.h"
  21. FT_BEGIN_HEADER
  22. FT_LOCAL( FT_Error )
  23. T1_Compute_Max_Advance( T1_Face face,
  24. FT_Pos* max_advance );
  25. FT_LOCAL( FT_Error )
  26. T1_Get_Advances( FT_Face face,
  27. FT_UInt first,
  28. FT_UInt count,
  29. FT_Int32 load_flags,
  30. FT_Fixed* advances );
  31. FT_LOCAL( FT_Error )
  32. T1_Load_Glyph( FT_GlyphSlot glyph,
  33. FT_Size size,
  34. FT_UInt glyph_index,
  35. FT_Int32 load_flags );
  36. FT_END_HEADER
  37. #endif /* __T1GLOAD_H__ */
  38. /* END */