2018-06-03 09:01:17 +02:00
|
|
|
/****************************************************************************
|
|
|
|
*
|
|
|
|
* ftbase.h
|
|
|
|
*
|
|
|
|
* Private functions used in the `base' module (specification).
|
|
|
|
*
|
2021-01-17 07:18:48 +01:00
|
|
|
* Copyright (C) 2008-2021 by
|
2018-06-03 09:01:17 +02:00
|
|
|
* David Turner, Robert Wilhelm, Werner Lemberg, and suzuki toshiya.
|
|
|
|
*
|
|
|
|
* This file is part of the FreeType project, and may only be used,
|
|
|
|
* modified, and distributed under the terms of the FreeType project
|
|
|
|
* license, LICENSE.TXT. By continuing to use, modify, or distribute
|
|
|
|
* this file you indicate that you have read the license and
|
|
|
|
* understand and accept it fully.
|
|
|
|
*
|
|
|
|
*/
|
2008-10-02 03:43:18 +02:00
|
|
|
|
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#ifndef FTBASE_H_
|
|
|
|
#define FTBASE_H_
|
2008-10-02 03:43:18 +02:00
|
|
|
|
|
|
|
|
2020-06-08 13:31:55 +02:00
|
|
|
#include <freetype/internal/ftobjs.h>
|
2008-10-02 03:43:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
FT_BEGIN_HEADER
|
|
|
|
|
|
|
|
|
2020-07-07 16:58:14 +02:00
|
|
|
FT_DECLARE_GLYPH( ft_bitmap_glyph_class )
|
|
|
|
FT_DECLARE_GLYPH( ft_outline_glyph_class )
|
|
|
|
|
|
|
|
|
2017-11-23 20:40:52 +01:00
|
|
|
#ifdef FT_CONFIG_OPTION_MAC_FONTS
|
|
|
|
|
2015-09-26 08:37:14 +02:00
|
|
|
/* MacOS resource fork cannot exceed 16MB at least for Carbon code; */
|
|
|
|
/* see https://support.microsoft.com/en-us/kb/130437 */
|
2015-09-21 16:07:22 +02:00
|
|
|
#define FT_MAC_RFORK_MAX_LEN 0x00FFFFFFUL
|
|
|
|
|
|
|
|
|
2008-10-04 09:11:58 +02:00
|
|
|
/* Assume the stream is sfnt-wrapped PS Type1 or sfnt-wrapped CID-keyed */
|
|
|
|
/* font, and try to load a face specified by the face_index. */
|
2010-01-14 20:32:21 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
2008-10-04 13:39:03 +02:00
|
|
|
open_face_PS_from_sfnt_stream( FT_Library library,
|
|
|
|
FT_Stream stream,
|
|
|
|
FT_Long face_index,
|
|
|
|
FT_Int num_params,
|
2008-10-04 09:11:58 +02:00
|
|
|
FT_Parameter *params,
|
|
|
|
FT_Face *aface );
|
|
|
|
|
2008-10-02 07:38:29 +02:00
|
|
|
|
2008-10-02 03:43:18 +02:00
|
|
|
/* Create a new FT_Face given a buffer and a driver name. */
|
2008-10-02 07:38:29 +02:00
|
|
|
/* From ftmac.c. */
|
2010-01-14 20:32:21 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
2008-10-02 03:43:18 +02:00
|
|
|
open_face_from_buffer( FT_Library library,
|
|
|
|
FT_Byte* base,
|
|
|
|
FT_ULong size,
|
|
|
|
FT_Long face_index,
|
|
|
|
const char* driver_name,
|
|
|
|
FT_Face *aface );
|
|
|
|
|
|
|
|
|
2011-12-02 13:14:18 +01:00
|
|
|
#if defined( FT_CONFIG_OPTION_GUESSING_EMBEDDED_RFORK ) && \
|
|
|
|
!defined( FT_MACINTOSH )
|
2010-10-13 10:05:42 +02:00
|
|
|
/* Mac OS X/Darwin kernel often changes recommended method to access */
|
|
|
|
/* the resource fork and older methods makes the kernel issue the */
|
|
|
|
/* warning of deprecated method. To calm it down, the methods based */
|
|
|
|
/* on Darwin VFS should be grouped and skip the rest methods after */
|
|
|
|
/* the case the resource is opened but found to lack a font in it. */
|
|
|
|
FT_LOCAL( FT_Bool )
|
2012-01-17 07:13:50 +01:00
|
|
|
ft_raccess_rule_by_darwin_vfs( FT_Library library, FT_UInt rule_index );
|
2011-10-30 06:03:13 +01:00
|
|
|
#endif
|
2010-10-13 10:05:42 +02:00
|
|
|
|
2017-11-23 20:40:52 +01:00
|
|
|
#endif /* FT_CONFIG_OPTION_MAC_FONTS */
|
|
|
|
|
2010-10-13 10:05:42 +02:00
|
|
|
|
2008-10-02 03:43:18 +02:00
|
|
|
FT_END_HEADER
|
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#endif /* FTBASE_H_ */
|
2008-10-02 03:43:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|