1 /***************************************************************************/
5 /* FreeType Cache subsystem (specification). */
7 /* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010 by */
8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
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. */
16 /***************************************************************************/
30 /*************************************************************************
39 * How to cache face, size, and glyph data with FreeType~2.
42 * This section describes the FreeType~2 cache sub-system, which is used
43 * to limit the number of concurrently opened @FT_Face and @FT_Size
44 * objects, as well as caching information like character maps and glyph
45 * images while limiting their maximum memory usage.
47 * Note that all types and functions begin with the `FTC_' prefix.
49 * The cache is highly portable and thus doesn't know anything about the
50 * fonts installed on your system, or how to access them. This implies
51 * the following scheme:
53 * First, available or installed font faces are uniquely identified by
54 * @FTC_FaceID values, provided to the cache by the client. Note that
55 * the cache only stores and compares these values, and doesn't try to
56 * interpret them in any way.
58 * Second, the cache calls, only when needed, a client-provided function
59 * to convert an @FTC_FaceID into a new @FT_Face object. The latter is
60 * then completely managed by the cache, including its termination
61 * through @FT_Done_Face. To monitor termination of face objects, the
62 * finalizer callback in the `generic' field of the @FT_Face object can
63 * be used, which might also be used to store the @FTC_FaceID of the
66 * Clients are free to map face IDs to anything else. The most simple
67 * usage is to associate them to a (pathname,face_index) pair that is
68 * used to call @FT_New_Face. However, more complex schemes are also
71 * Note that for the cache to work correctly, the face ID values must be
72 * *persistent*, which means that the contents they point to should not
73 * change at runtime, or that their value should not become invalid.
75 * If this is unavoidable (e.g., when a font is uninstalled at runtime),
76 * you should call @FTC_Manager_RemoveFaceID as soon as possible, to let
77 * the cache get rid of any references to the old @FTC_FaceID it may
78 * keep internally. Failure to do so will lead to incorrect behaviour
81 * To use the cache, start with calling @FTC_Manager_New to create a new
82 * @FTC_Manager object, which models a single cache instance. You can
83 * then look up @FT_Face and @FT_Size objects with
84 * @FTC_Manager_LookupFace and @FTC_Manager_LookupSize, respectively.
86 * If you want to use the charmap caching, call @FTC_CMapCache_New, then
87 * later use @FTC_CMapCache_Lookup to perform the equivalent of
88 * @FT_Get_Char_Index, only much faster.
90 * If you want to use the @FT_Glyph caching, call @FTC_ImageCache, then
91 * later use @FTC_ImageCache_Lookup to retrieve the corresponding
92 * @FT_Glyph objects from the cache.
94 * If you need lots of small bitmaps, it is much more memory efficient
95 * to call @FTC_SBitCache_New followed by @FTC_SBitCache_Lookup. This
96 * returns @FTC_SBitRec structures, which are used to store small
97 * bitmaps directly. (A small bitmap is one whose metrics and
98 * dimensions all fit into 8-bit integers).
100 * We hope to also provide a kerning cache in the near future.
111 * FTC_Manager_LookupFace
112 * FTC_Manager_LookupSize
113 * FTC_Manager_RemoveFaceID
120 * FTC_ImageCache_Lookup
125 * FTC_SBitCache_Lookup
129 * FTC_CMapCache_Lookup
131 *************************************************************************/
134 /*************************************************************************/
135 /*************************************************************************/
136 /*************************************************************************/
138 /***** BASIC TYPE DEFINITIONS *****/
140 /*************************************************************************/
141 /*************************************************************************/
142 /*************************************************************************/
145 /*************************************************************************
150 * An opaque pointer type that is used to identity face objects. The
151 * contents of such objects is application-dependent.
153 * These pointers are typically used to point to a user-defined
154 * structure containing a font file path, and face index.
157 * Never use NULL as a valid @FTC_FaceID.
159 * Face IDs are passed by the client to the cache manager, which calls,
160 * when needed, the @FTC_Face_Requester to translate them into new
163 * If the content of a given face ID changes at runtime, or if the value
164 * becomes invalid (e.g., when uninstalling a font), you should
165 * immediately call @FTC_Manager_RemoveFaceID before any other cache
168 * Failure to do so will result in incorrect behaviour or even
169 * memory leaks and crashes.
171 typedef FT_Pointer FTC_FaceID;
174 /************************************************************************
180 * A callback function provided by client applications. It is used by
181 * the cache manager to translate a given @FTC_FaceID into a new valid
182 * @FT_Face object, on demand.
186 * The face ID to resolve.
189 * A handle to a FreeType library object.
192 * Application-provided request data (see note below).
196 * A new @FT_Face handle.
199 * FreeType error code. 0~means success.
202 * The third parameter `req_data' is the same as the one passed by the
203 * client when @FTC_Manager_New is called.
205 * The face requester should not perform funny things on the returned
206 * face object, like creating a new @FT_Size for it, or setting a
207 * transformation through @FT_Set_Transform!
210 (*FTC_Face_Requester)( FTC_FaceID face_id,
212 FT_Pointer request_data,
217 #ifdef FT_CONFIG_OPTION_OLD_INTERNALS
219 /* these macros are incompatible with LLP64, should not be used */
221 #define FT_POINTER_TO_ULONG( p ) ( (FT_ULong)(FT_Pointer)(p) )
223 #define FTC_FACE_ID_HASH( i ) \
224 ((FT_UInt32)(( FT_POINTER_TO_ULONG( i ) >> 3 ) ^ \
225 ( FT_POINTER_TO_ULONG( i ) << 7 ) ) )
227 #endif /* FT_CONFIG_OPTION_OLD_INTERNALS */
229 /*************************************************************************/
230 /*************************************************************************/
231 /*************************************************************************/
233 /***** CACHE MANAGER OBJECT *****/
235 /*************************************************************************/
236 /*************************************************************************/
237 /*************************************************************************/
240 /*************************************************************************/
246 /* This object corresponds to one instance of the cache-subsystem. */
247 /* It is used to cache one or more @FT_Face objects, along with */
248 /* corresponding @FT_Size objects. */
250 /* The manager intentionally limits the total number of opened */
251 /* @FT_Face and @FT_Size objects to control memory usage. See the */
252 /* `max_faces' and `max_sizes' parameters of @FTC_Manager_New. */
254 /* The manager is also used to cache `nodes' of various types while */
255 /* limiting their total memory usage. */
257 /* All limitations are enforced by keeping lists of managed objects */
258 /* in most-recently-used order, and flushing old nodes to make room */
261 typedef struct FTC_ManagerRec_* FTC_Manager;
264 /*************************************************************************/
270 /* An opaque handle to a cache node object. Each cache node is */
271 /* reference-counted. A node with a count of~0 might be flushed */
272 /* out of a full cache whenever a lookup request is performed. */
274 /* If you look up nodes, you have the ability to `acquire' them, */
275 /* i.e., to increment their reference count. This will prevent the */
276 /* node from being flushed out of the cache until you explicitly */
277 /* `release' it (see @FTC_Node_Unref). */
279 /* See also @FTC_SBitCache_Lookup and @FTC_ImageCache_Lookup. */
281 typedef struct FTC_NodeRec_* FTC_Node;
284 /*************************************************************************/
287 /* FTC_Manager_New */
290 /* Create a new cache manager. */
293 /* library :: The parent FreeType library handle to use. */
295 /* max_faces :: Maximum number of opened @FT_Face objects managed by */
296 /* this cache instance. Use~0 for defaults. */
298 /* max_sizes :: Maximum number of opened @FT_Size objects managed by */
299 /* this cache instance. Use~0 for defaults. */
301 /* max_bytes :: Maximum number of bytes to use for cached data nodes. */
302 /* Use~0 for defaults. Note that this value does not */
303 /* account for managed @FT_Face and @FT_Size objects. */
305 /* requester :: An application-provided callback used to translate */
306 /* face IDs into real @FT_Face objects. */
308 /* req_data :: A generic pointer that is passed to the requester */
309 /* each time it is called (see @FTC_Face_Requester). */
312 /* amanager :: A handle to a new manager object. 0~in case of */
316 /* FreeType error code. 0~means success. */
318 FT_EXPORT( FT_Error )
319 FTC_Manager_New( FT_Library library,
323 FTC_Face_Requester requester,
325 FTC_Manager *amanager );
328 /*************************************************************************/
331 /* FTC_Manager_Reset */
334 /* Empty a given cache manager. This simply gets rid of all the */
335 /* currently cached @FT_Face and @FT_Size objects within the manager. */
338 /* manager :: A handle to the manager. */
341 FTC_Manager_Reset( FTC_Manager manager );
344 /*************************************************************************/
347 /* FTC_Manager_Done */
350 /* Destroy a given manager after emptying it. */
353 /* manager :: A handle to the target cache manager object. */
356 FTC_Manager_Done( FTC_Manager manager );
359 /*************************************************************************/
362 /* FTC_Manager_LookupFace */
365 /* Retrieve the @FT_Face object that corresponds to a given face ID */
366 /* through a cache manager. */
369 /* manager :: A handle to the cache manager. */
371 /* face_id :: The ID of the face object. */
374 /* aface :: A handle to the face object. */
377 /* FreeType error code. 0~means success. */
380 /* The returned @FT_Face object is always owned by the manager. You */
381 /* should never try to discard it yourself. */
383 /* The @FT_Face object doesn't necessarily have a current size object */
384 /* (i.e., face->size can be 0). If you need a specific `font size', */
385 /* use @FTC_Manager_LookupSize instead. */
387 /* Never change the face's transformation matrix (i.e., never call */
388 /* the @FT_Set_Transform function) on a returned face! If you need */
389 /* to transform glyphs, do it yourself after glyph loading. */
391 /* When you perform a lookup, out-of-memory errors are detected */
392 /* _within_ the lookup and force incremental flushes of the cache */
393 /* until enough memory is released for the lookup to succeed. */
395 /* If a lookup fails with `FT_Err_Out_Of_Memory' the cache has */
396 /* already been completely flushed, and still no memory was available */
397 /* for the operation. */
399 FT_EXPORT( FT_Error )
400 FTC_Manager_LookupFace( FTC_Manager manager,
405 /*************************************************************************/
411 /* A structure used to describe a given character size in either */
412 /* pixels or points to the cache manager. See */
413 /* @FTC_Manager_LookupSize. */
416 /* face_id :: The source face ID. */
418 /* width :: The character width. */
420 /* height :: The character height. */
422 /* pixel :: A Boolean. If 1, the `width' and `height' fields are */
423 /* interpreted as integer pixel character sizes. */
424 /* Otherwise, they are expressed as 1/64th of points. */
426 /* x_res :: Only used when `pixel' is value~0 to indicate the */
427 /* horizontal resolution in dpi. */
429 /* y_res :: Only used when `pixel' is value~0 to indicate the */
430 /* vertical resolution in dpi. */
433 /* This type is mainly used to retrieve @FT_Size objects through the */
436 typedef struct FTC_ScalerRec_
448 /*************************************************************************/
454 /* A handle to an @FTC_ScalerRec structure. */
456 typedef struct FTC_ScalerRec_* FTC_Scaler;
459 /*************************************************************************/
462 /* FTC_Manager_LookupSize */
465 /* Retrieve the @FT_Size object that corresponds to a given */
466 /* @FTC_ScalerRec pointer through a cache manager. */
469 /* manager :: A handle to the cache manager. */
471 /* scaler :: A scaler handle. */
474 /* asize :: A handle to the size object. */
477 /* FreeType error code. 0~means success. */
480 /* The returned @FT_Size object is always owned by the manager. You */
481 /* should never try to discard it by yourself. */
483 /* You can access the parent @FT_Face object simply as `size->face' */
484 /* if you need it. Note that this object is also owned by the */
488 /* When you perform a lookup, out-of-memory errors are detected */
489 /* _within_ the lookup and force incremental flushes of the cache */
490 /* until enough memory is released for the lookup to succeed. */
492 /* If a lookup fails with `FT_Err_Out_Of_Memory' the cache has */
493 /* already been completely flushed, and still no memory is available */
494 /* for the operation. */
496 FT_EXPORT( FT_Error )
497 FTC_Manager_LookupSize( FTC_Manager manager,
502 /*************************************************************************/
508 /* Decrement a cache node's internal reference count. When the count */
509 /* reaches 0, it is not destroyed but becomes eligible for subsequent */
513 /* node :: The cache node handle. */
515 /* manager :: The cache manager handle. */
518 FTC_Node_Unref( FTC_Node node,
519 FTC_Manager manager );
522 /*************************************************************************
525 * FTC_Manager_RemoveFaceID
528 * A special function used to indicate to the cache manager that
529 * a given @FTC_FaceID is no longer valid, either because its
530 * content changed, or because it was deallocated or uninstalled.
534 * The cache manager handle.
537 * The @FTC_FaceID to be removed.
540 * This function flushes all nodes from the cache corresponding to this
541 * `face_id', with the exception of nodes with a non-null reference
544 * Such nodes are however modified internally so as to never appear
545 * in later lookups with the same `face_id' value, and to be immediately
546 * destroyed when released by all their users.
550 FTC_Manager_RemoveFaceID( FTC_Manager manager,
551 FTC_FaceID face_id );
554 /*************************************************************************/
557 /* cache_subsystem */
559 /*************************************************************************/
561 /*************************************************************************
567 * An opaque handle used to model a charmap cache. This cache is to
568 * hold character codes -> glyph indices mappings.
571 typedef struct FTC_CMapCacheRec_* FTC_CMapCache;
574 /*************************************************************************
580 * Create a new charmap cache.
584 * A handle to the cache manager.
588 * A new cache handle. NULL in case of error.
591 * FreeType error code. 0~means success.
594 * Like all other caches, this one will be destroyed with the cache
598 FT_EXPORT( FT_Error )
599 FTC_CMapCache_New( FTC_Manager manager,
600 FTC_CMapCache *acache );
603 /************************************************************************
606 * FTC_CMapCache_Lookup
609 * Translate a character code into a glyph index, using the charmap
614 * A charmap cache handle.
617 * The source face ID.
620 * The index of the charmap in the source face. Any negative value
621 * means to use the cache @FT_Face's default charmap.
624 * The character code (in the corresponding charmap).
627 * Glyph index. 0~means `no glyph'.
631 FTC_CMapCache_Lookup( FTC_CMapCache cache,
634 FT_UInt32 char_code );
637 /*************************************************************************/
640 /* cache_subsystem */
642 /*************************************************************************/
645 /*************************************************************************/
646 /*************************************************************************/
647 /*************************************************************************/
649 /***** IMAGE CACHE OBJECT *****/
651 /*************************************************************************/
652 /*************************************************************************/
653 /*************************************************************************/
656 /*************************************************************************
662 * A structure used to model the type of images in a glyph cache.
669 * The width in pixels.
672 * The height in pixels.
675 * The load flags, as in @FT_Load_Glyph.
678 typedef struct FTC_ImageTypeRec_
688 /*************************************************************************
694 * A handle to an @FTC_ImageTypeRec structure.
697 typedef struct FTC_ImageTypeRec_* FTC_ImageType;
703 #define FTC_IMAGE_TYPE_COMPARE( d1, d2 ) \
704 ( (d1)->face_id == (d2)->face_id && \
705 (d1)->width == (d2)->width && \
706 (d1)->flags == (d2)->flags )
708 #ifdef FT_CONFIG_OPTION_OLD_INTERNALS
710 /* this macro is incompatible with LLP64, should not be used */
712 #define FTC_IMAGE_TYPE_HASH( d ) \
713 (FT_UFast)( FTC_FACE_ID_HASH( (d)->face_id ) ^ \
714 ( (d)->width << 8 ) ^ (d)->height ^ \
715 ( (d)->flags << 4 ) )
717 #endif /* FT_CONFIG_OPTION_OLD_INTERNALS */
720 /*************************************************************************/
726 /* A handle to an glyph image cache object. They are designed to */
727 /* hold many distinct glyph images while not exceeding a certain */
728 /* memory threshold. */
730 typedef struct FTC_ImageCacheRec_* FTC_ImageCache;
733 /*************************************************************************/
736 /* FTC_ImageCache_New */
739 /* Create a new glyph image cache. */
742 /* manager :: The parent manager for the image cache. */
745 /* acache :: A handle to the new glyph image cache object. */
748 /* FreeType error code. 0~means success. */
750 FT_EXPORT( FT_Error )
751 FTC_ImageCache_New( FTC_Manager manager,
752 FTC_ImageCache *acache );
755 /*************************************************************************/
758 /* FTC_ImageCache_Lookup */
761 /* Retrieve a given glyph image from a glyph image cache. */
764 /* cache :: A handle to the source glyph image cache. */
766 /* type :: A pointer to a glyph image type descriptor. */
768 /* gindex :: The glyph index to retrieve. */
771 /* aglyph :: The corresponding @FT_Glyph object. 0~in case of */
774 /* anode :: Used to return the address of of the corresponding cache */
775 /* node after incrementing its reference count (see note */
779 /* FreeType error code. 0~means success. */
782 /* The returned glyph is owned and managed by the glyph image cache. */
783 /* Never try to transform or discard it manually! You can however */
784 /* create a copy with @FT_Glyph_Copy and modify the new one. */
786 /* If `anode' is _not_ NULL, it receives the address of the cache */
787 /* node containing the glyph image, after increasing its reference */
788 /* count. This ensures that the node (as well as the @FT_Glyph) will */
789 /* always be kept in the cache until you call @FTC_Node_Unref to */
792 /* If `anode' is NULL, the cache node is left unchanged, which means */
793 /* that the @FT_Glyph could be flushed out of the cache on the next */
794 /* call to one of the caching sub-system APIs. Don't assume that it */
797 FT_EXPORT( FT_Error )
798 FTC_ImageCache_Lookup( FTC_ImageCache cache,
805 /*************************************************************************/
808 /* FTC_ImageCache_LookupScaler */
811 /* A variant of @FTC_ImageCache_Lookup that uses an @FTC_ScalerRec */
812 /* to specify the face ID and its size. */
815 /* cache :: A handle to the source glyph image cache. */
817 /* scaler :: A pointer to a scaler descriptor. */
819 /* load_flags :: The corresponding load flags. */
821 /* gindex :: The glyph index to retrieve. */
824 /* aglyph :: The corresponding @FT_Glyph object. 0~in case of */
827 /* anode :: Used to return the address of of the corresponding */
828 /* cache node after incrementing its reference count */
829 /* (see note below). */
832 /* FreeType error code. 0~means success. */
835 /* The returned glyph is owned and managed by the glyph image cache. */
836 /* Never try to transform or discard it manually! You can however */
837 /* create a copy with @FT_Glyph_Copy and modify the new one. */
839 /* If `anode' is _not_ NULL, it receives the address of the cache */
840 /* node containing the glyph image, after increasing its reference */
841 /* count. This ensures that the node (as well as the @FT_Glyph) will */
842 /* always be kept in the cache until you call @FTC_Node_Unref to */
845 /* If `anode' is NULL, the cache node is left unchanged, which means */
846 /* that the @FT_Glyph could be flushed out of the cache on the next */
847 /* call to one of the caching sub-system APIs. Don't assume that it */
850 /* Calls to @FT_Set_Char_Size and friends have no effect on cached */
851 /* glyphs; you should always use the FreeType cache API instead. */
853 FT_EXPORT( FT_Error )
854 FTC_ImageCache_LookupScaler( FTC_ImageCache cache,
862 /*************************************************************************/
868 /* A handle to a small bitmap descriptor. See the @FTC_SBitRec */
869 /* structure for details. */
871 typedef struct FTC_SBitRec_* FTC_SBit;
874 /*************************************************************************/
880 /* A very compact structure used to describe a small glyph bitmap. */
883 /* width :: The bitmap width in pixels. */
885 /* height :: The bitmap height in pixels. */
887 /* left :: The horizontal distance from the pen position to the */
888 /* left bitmap border (a.k.a. `left side bearing', or */
891 /* top :: The vertical distance from the pen position (on the */
892 /* baseline) to the upper bitmap border (a.k.a. `top */
893 /* side bearing'). The distance is positive for upwards */
896 /* format :: The format of the glyph bitmap (monochrome or gray). */
898 /* max_grays :: Maximum gray level value (in the range 1 to~255). */
900 /* pitch :: The number of bytes per bitmap line. May be positive */
903 /* xadvance :: The horizontal advance width in pixels. */
905 /* yadvance :: The vertical advance height in pixels. */
907 /* buffer :: A pointer to the bitmap pixels. */
909 typedef struct FTC_SBitRec_
927 /*************************************************************************/
933 /* A handle to a small bitmap cache. These are special cache objects */
934 /* used to store small glyph bitmaps (and anti-aliased pixmaps) in a */
935 /* much more efficient way than the traditional glyph image cache */
936 /* implemented by @FTC_ImageCache. */
938 typedef struct FTC_SBitCacheRec_* FTC_SBitCache;
941 /*************************************************************************/
944 /* FTC_SBitCache_New */
947 /* Create a new cache to store small glyph bitmaps. */
950 /* manager :: A handle to the source cache manager. */
953 /* acache :: A handle to the new sbit cache. NULL in case of error. */
956 /* FreeType error code. 0~means success. */
958 FT_EXPORT( FT_Error )
959 FTC_SBitCache_New( FTC_Manager manager,
960 FTC_SBitCache *acache );
963 /*************************************************************************/
966 /* FTC_SBitCache_Lookup */
969 /* Look up a given small glyph bitmap in a given sbit cache and */
970 /* `lock' it to prevent its flushing from the cache until needed. */
973 /* cache :: A handle to the source sbit cache. */
975 /* type :: A pointer to the glyph image type descriptor. */
977 /* gindex :: The glyph index. */
980 /* sbit :: A handle to a small bitmap descriptor. */
982 /* anode :: Used to return the address of of the corresponding cache */
983 /* node after incrementing its reference count (see note */
987 /* FreeType error code. 0~means success. */
990 /* The small bitmap descriptor and its bit buffer are owned by the */
991 /* cache and should never be freed by the application. They might */
992 /* as well disappear from memory on the next cache lookup, so don't */
993 /* treat them as persistent data. */
995 /* The descriptor's `buffer' field is set to~0 to indicate a missing */
998 /* If `anode' is _not_ NULL, it receives the address of the cache */
999 /* node containing the bitmap, after increasing its reference count. */
1000 /* This ensures that the node (as well as the image) will always be */
1001 /* kept in the cache until you call @FTC_Node_Unref to `release' it. */
1003 /* If `anode' is NULL, the cache node is left unchanged, which means */
1004 /* that the bitmap could be flushed out of the cache on the next */
1005 /* call to one of the caching sub-system APIs. Don't assume that it */
1006 /* is persistent! */
1008 FT_EXPORT( FT_Error )
1009 FTC_SBitCache_Lookup( FTC_SBitCache cache,
1016 /*************************************************************************/
1019 /* FTC_SBitCache_LookupScaler */
1022 /* A variant of @FTC_SBitCache_Lookup that uses an @FTC_ScalerRec */
1023 /* to specify the face ID and its size. */
1026 /* cache :: A handle to the source sbit cache. */
1028 /* scaler :: A pointer to the scaler descriptor. */
1030 /* load_flags :: The corresponding load flags. */
1032 /* gindex :: The glyph index. */
1035 /* sbit :: A handle to a small bitmap descriptor. */
1037 /* anode :: Used to return the address of of the corresponding */
1038 /* cache node after incrementing its reference count */
1039 /* (see note below). */
1042 /* FreeType error code. 0~means success. */
1045 /* The small bitmap descriptor and its bit buffer are owned by the */
1046 /* cache and should never be freed by the application. They might */
1047 /* as well disappear from memory on the next cache lookup, so don't */
1048 /* treat them as persistent data. */
1050 /* The descriptor's `buffer' field is set to~0 to indicate a missing */
1053 /* If `anode' is _not_ NULL, it receives the address of the cache */
1054 /* node containing the bitmap, after increasing its reference count. */
1055 /* This ensures that the node (as well as the image) will always be */
1056 /* kept in the cache until you call @FTC_Node_Unref to `release' it. */
1058 /* If `anode' is NULL, the cache node is left unchanged, which means */
1059 /* that the bitmap could be flushed out of the cache on the next */
1060 /* call to one of the caching sub-system APIs. Don't assume that it */
1061 /* is persistent! */
1063 FT_EXPORT( FT_Error )
1064 FTC_SBitCache_LookupScaler( FTC_SBitCache cache,
1066 FT_ULong load_flags,
1074 #ifdef FT_CONFIG_OPTION_OLD_INTERNALS
1076 /*@***********************************************************************/
1082 /* A simple structure used to describe a given `font' to the cache */
1083 /* manager. Note that a `font' is the combination of a given face */
1084 /* with a given character size. */
1087 /* face_id :: The ID of the face to use. */
1089 /* pix_width :: The character width in integer pixels. */
1091 /* pix_height :: The character height in integer pixels. */
1093 typedef struct FTC_FontRec_
1096 FT_UShort pix_width;
1097 FT_UShort pix_height;
1105 #define FTC_FONT_COMPARE( f1, f2 ) \
1106 ( (f1)->face_id == (f2)->face_id && \
1107 (f1)->pix_width == (f2)->pix_width && \
1108 (f1)->pix_height == (f2)->pix_height )
1110 /* this macro is incompatible with LLP64, should not be used */
1111 #define FTC_FONT_HASH( f ) \
1112 (FT_UInt32)( FTC_FACE_ID_HASH((f)->face_id) ^ \
1113 ((f)->pix_width << 8) ^ \
1116 typedef FTC_FontRec* FTC_Font;
1119 FT_EXPORT( FT_Error )
1120 FTC_Manager_Lookup_Face( FTC_Manager manager,
1124 FT_EXPORT( FT_Error )
1125 FTC_Manager_Lookup_Size( FTC_Manager manager,
1130 #endif /* FT_CONFIG_OPTION_OLD_INTERNALS */
1137 #endif /* __FTCACHE_H__ */