Disabling auto-refresh of game list by default, as it is causing bugs sometimes
[open-ps2-loader.git] / thirdparty / freetype-2.3.12 / src / base / ftmm.c
blob0307729811fbee522ea4008845149c712320fab7
1 /***************************************************************************/
2 /* */
3 /* ftmm.c */
4 /* */
5 /* Multiple Master font support (body). */
6 /* */
7 /* Copyright 1996-2001, 2003, 2004, 2009 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 #include <ft2build.h>
20 #include FT_MULTIPLE_MASTERS_H
21 #include FT_INTERNAL_OBJECTS_H
22 #include FT_SERVICE_MULTIPLE_MASTERS_H
25 /*************************************************************************/
26 /* */
27 /* The macro FT_COMPONENT is used in trace mode. It is an implicit */
28 /* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log */
29 /* messages during execution. */
30 /* */
31 #undef FT_COMPONENT
32 #define FT_COMPONENT trace_mm
35 static FT_Error
36 ft_face_get_mm_service( FT_Face face,
37 FT_Service_MultiMasters *aservice )
39 FT_Error error;
42 *aservice = NULL;
44 if ( !face )
45 return FT_Err_Invalid_Face_Handle;
47 error = FT_Err_Invalid_Argument;
49 if ( FT_HAS_MULTIPLE_MASTERS( face ) )
51 FT_FACE_LOOKUP_SERVICE( face,
52 *aservice,
53 MULTI_MASTERS );
55 if ( *aservice )
56 error = FT_Err_Ok;
59 return error;
63 /* documentation is in ftmm.h */
65 FT_EXPORT_DEF( FT_Error )
66 FT_Get_Multi_Master( FT_Face face,
67 FT_Multi_Master *amaster )
69 FT_Error error;
70 FT_Service_MultiMasters service;
73 error = ft_face_get_mm_service( face, &service );
74 if ( !error )
76 error = FT_Err_Invalid_Argument;
77 if ( service->get_mm )
78 error = service->get_mm( face, amaster );
81 return error;
85 /* documentation is in ftmm.h */
87 FT_EXPORT_DEF( FT_Error )
88 FT_Get_MM_Var( FT_Face face,
89 FT_MM_Var* *amaster )
91 FT_Error error;
92 FT_Service_MultiMasters service;
95 error = ft_face_get_mm_service( face, &service );
96 if ( !error )
98 error = FT_Err_Invalid_Argument;
99 if ( service->get_mm_var )
100 error = service->get_mm_var( face, amaster );
103 return error;
107 /* documentation is in ftmm.h */
109 FT_EXPORT_DEF( FT_Error )
110 FT_Set_MM_Design_Coordinates( FT_Face face,
111 FT_UInt num_coords,
112 FT_Long* coords )
114 FT_Error error;
115 FT_Service_MultiMasters service;
118 error = ft_face_get_mm_service( face, &service );
119 if ( !error )
121 error = FT_Err_Invalid_Argument;
122 if ( service->set_mm_design )
123 error = service->set_mm_design( face, num_coords, coords );
126 return error;
130 /* documentation is in ftmm.h */
132 FT_EXPORT_DEF( FT_Error )
133 FT_Set_Var_Design_Coordinates( FT_Face face,
134 FT_UInt num_coords,
135 FT_Fixed* coords )
137 FT_Error error;
138 FT_Service_MultiMasters service;
141 error = ft_face_get_mm_service( face, &service );
142 if ( !error )
144 error = FT_Err_Invalid_Argument;
145 if ( service->set_var_design )
146 error = service->set_var_design( face, num_coords, coords );
149 return error;
153 /* documentation is in ftmm.h */
155 FT_EXPORT_DEF( FT_Error )
156 FT_Set_MM_Blend_Coordinates( FT_Face face,
157 FT_UInt num_coords,
158 FT_Fixed* coords )
160 FT_Error error;
161 FT_Service_MultiMasters service;
164 error = ft_face_get_mm_service( face, &service );
165 if ( !error )
167 error = FT_Err_Invalid_Argument;
168 if ( service->set_mm_blend )
169 error = service->set_mm_blend( face, num_coords, coords );
172 return error;
176 /* documentation is in ftmm.h */
178 /* This is exactly the same as the previous function. It exists for */
179 /* orthogonality. */
181 FT_EXPORT_DEF( FT_Error )
182 FT_Set_Var_Blend_Coordinates( FT_Face face,
183 FT_UInt num_coords,
184 FT_Fixed* coords )
186 FT_Error error;
187 FT_Service_MultiMasters service;
190 error = ft_face_get_mm_service( face, &service );
191 if ( !error )
193 error = FT_Err_Invalid_Argument;
194 if ( service->set_mm_blend )
195 error = service->set_mm_blend( face, num_coords, coords );
198 return error;
202 /* END */