mgh: fix for default HDD DMA mode, that wasn't correctly set
[open-ps2-loader.git] / thirdparty / freetype-2.3.12 / src / psaux / t1decode.h
blob00728db501e5e9d400302dd790fe7096c581ad43
1 /***************************************************************************/
2 /* */
3 /* t1decode.h */
4 /* */
5 /* PostScript Type 1 decoding routines (specification). */
6 /* */
7 /* Copyright 2000-2001, 2002, 2003 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 /***************************************************************************/
19 #ifndef __T1DECODE_H__
20 #define __T1DECODE_H__
23 #include <ft2build.h>
24 #include FT_INTERNAL_POSTSCRIPT_AUX_H
25 #include FT_INTERNAL_TYPE1_TYPES_H
28 FT_BEGIN_HEADER
31 FT_CALLBACK_TABLE
32 const T1_Decoder_FuncsRec t1_decoder_funcs;
35 FT_LOCAL( FT_Error )
36 t1_decoder_parse_glyph( T1_Decoder decoder,
37 FT_UInt glyph_index );
39 FT_LOCAL( FT_Error )
40 t1_decoder_parse_charstrings( T1_Decoder decoder,
41 FT_Byte* base,
42 FT_UInt len );
44 FT_LOCAL( FT_Error )
45 t1_decoder_init( T1_Decoder decoder,
46 FT_Face face,
47 FT_Size size,
48 FT_GlyphSlot slot,
49 FT_Byte** glyph_names,
50 PS_Blend blend,
51 FT_Bool hinting,
52 FT_Render_Mode hint_mode,
53 T1_Decoder_Callback parse_glyph );
55 FT_LOCAL( void )
56 t1_decoder_done( T1_Decoder decoder );
59 FT_END_HEADER
61 #endif /* __T1DECODE_H__ */
64 /* END */