2003-04-25 13:30:07 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* ttunpat.h */
|
|
|
|
/* */
|
2016-01-28 14:11:14 +01:00
|
|
|
/* Definitions for the unpatented TrueType hinting system. */
|
|
|
|
/* Obsolete, retained for backwards compatibility. */
|
2003-04-25 13:30:07 +02:00
|
|
|
/* */
|
2017-01-04 20:16:34 +01:00
|
|
|
/* Copyright 2003-2017 by */
|
2003-04-25 13:30:07 +02:00
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
2003-04-29 15:23:47 +02:00
|
|
|
/* Written by Graham Asher <graham.asher@btinternet.com> */
|
|
|
|
/* */
|
2003-04-25 13:30:07 +02:00
|
|
|
/* 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. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#ifndef TTUNPAT_H_
|
|
|
|
#define TTUNPAT_H_
|
2003-04-25 13:30:07 +02:00
|
|
|
|
|
|
|
|
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_FREETYPE_H
|
|
|
|
|
2003-11-04 08:44:19 +01:00
|
|
|
#ifdef FREETYPE_H
|
|
|
|
#error "freetype.h of FreeType 1 has been loaded!"
|
|
|
|
#error "Please fix the directory search order for header files"
|
|
|
|
#error "so that freetype.h of FreeType 2 is found first."
|
|
|
|
#endif
|
|
|
|
|
2003-04-25 13:30:07 +02:00
|
|
|
|
|
|
|
FT_BEGIN_HEADER
|
|
|
|
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
*
|
|
|
|
* @constant:
|
|
|
|
* FT_PARAM_TAG_UNPATENTED_HINTING
|
|
|
|
*
|
|
|
|
* @description:
|
2016-01-28 14:11:14 +01:00
|
|
|
* Deprecated.
|
|
|
|
*
|
|
|
|
* Previously: A constant used as the tag of an @FT_Parameter structure to
|
|
|
|
* indicate that unpatented methods only should be used by the TrueType
|
|
|
|
* bytecode interpreter for a typeface opened by @FT_Open_Face.
|
2003-04-25 13:30:07 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
#define FT_PARAM_TAG_UNPATENTED_HINTING FT_MAKE_TAG( 'u', 'n', 'p', 'a' )
|
|
|
|
|
2014-12-02 23:06:04 +01:00
|
|
|
/* */
|
|
|
|
|
2003-04-25 13:30:07 +02:00
|
|
|
|
|
|
|
FT_END_HEADER
|
|
|
|
|
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#endif /* TTUNPAT_H_ */
|
2003-04-25 13:30:07 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|