| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* ftrender.h */ | 3 /* ftrender.h */ |
| 4 /* */ | 4 /* */ |
| 5 /* FreeType renderer modules public interface (specification). */ | 5 /* FreeType renderer modules public interface (specification). */ |
| 6 /* */ | 6 /* */ |
| 7 /* Copyright 1996-2001, 2005, 2006, 2010 by */ | 7 /* Copyright 1996-2001, 2005, 2006, 2010 by */ |
| 8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ | 8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ |
| 9 /* */ | 9 /* */ |
| 10 /* This file is part of the FreeType project, and may only be used, */ | 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 */ | 11 /* modified, and distributed under the terms of the FreeType project */ |
| 12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ | 12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ |
| 13 /* this file you indicate that you have read the license and */ | 13 /* this file you indicate that you have read the license and */ |
| 14 /* understand and accept it fully. */ | 14 /* understand and accept it fully. */ |
| 15 /* */ | 15 /* */ |
| 16 /***************************************************************************/ | 16 /***************************************************************************/ |
| 17 | 17 |
| 18 | 18 |
| 19 #ifndef __FTRENDER_H__ | 19 #ifndef __FTRENDER_H__ |
| 20 #define __FTRENDER_H__ | 20 #define __FTRENDER_H__ |
| 21 | 21 |
| 22 | 22 |
| 23 #include "../ft2build.h" | 23 #include <ft2build.h> |
| 24 #include "ftmodapi.h" | 24 #include FT_MODULE_H |
| 25 #include "ftglyph.h" | 25 #include FT_GLYPH_H |
| 26 | 26 |
| 27 | 27 |
| 28 FT_BEGIN_HEADER | 28 FT_BEGIN_HEADER |
| 29 | 29 |
| 30 | 30 |
| 31 /*************************************************************************/ | 31 /*************************************************************************/ |
| 32 /* */ | 32 /* */ |
| 33 /* <Section> */ | 33 /* <Section> */ |
| 34 /* module_management */ | 34 /* module_management */ |
| 35 /* */ | 35 /* */ |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 /* `pal5' to set its gray palette as a character string with */ | 219 /* `pal5' to set its gray palette as a character string with */ |
| 220 /* 5~elements. Consequently, the third and fourth argument are zero */ | 220 /* 5~elements. Consequently, the third and fourth argument are zero */ |
| 221 /* normally. */ | 221 /* normally. */ |
| 222 /* */ | 222 /* */ |
| 223 FT_EXPORT( FT_Error ) | 223 FT_EXPORT( FT_Error ) |
| 224 FT_Set_Renderer( FT_Library library, | 224 FT_Set_Renderer( FT_Library library, |
| 225 FT_Renderer renderer, | 225 FT_Renderer renderer, |
| 226 FT_UInt num_params, | 226 FT_UInt num_params, |
| 227 FT_Parameter* parameters ); | 227 FT_Parameter* parameters ); |
| 228 | 228 |
| 229 | |
| 230 /* */ | 229 /* */ |
| 231 | 230 |
| 232 | 231 |
| 233 FT_END_HEADER | 232 FT_END_HEADER |
| 234 | 233 |
| 235 #endif /* __FTRENDER_H__ */ | 234 #endif /* __FTRENDER_H__ */ |
| 236 | 235 |
| 237 | 236 |
| 238 /* END */ | 237 /* END */ |
| OLD | NEW |