Clutter Engine 0.0.1
Loading...
Searching...
No Matches
ttunpat.h
1/***************************************************************************/
2/* */
3/* ttunpat.h */
4/* */
5/* Definitions for the unpatented TrueType hinting system. */
6/* Obsolete, retained for backwards compatibility. */
7/* */
8/* Copyright 2003-2016 by */
9/* David Turner, Robert Wilhelm, and Werner Lemberg. */
10/* */
11/* Written by Graham Asher <graham.asher@btinternet.com> */
12/* */
13/* This file is part of the FreeType project, and may only be used, */
14/* modified, and distributed under the terms of the FreeType project */
15/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
16/* this file you indicate that you have read the license and */
17/* understand and accept it fully. */
18/* */
19/***************************************************************************/
20
21
22#ifndef TTUNPAT_H_
23#define TTUNPAT_H_
24
25
26#include <ft2build.h>
27#include FT_FREETYPE_H
28
29#ifdef FREETYPE_H
30#error "freetype.h of FreeType 1 has been loaded!"
31#error "Please fix the directory search order for header files"
32#error "so that freetype.h of FreeType 2 is found first."
33#endif
34
35
36FT_BEGIN_HEADER
37
38
39 /***************************************************************************
40 *
41 * @constant:
42 * FT_PARAM_TAG_UNPATENTED_HINTING
43 *
44 * @description:
45 * Deprecated.
46 *
47 * Previously: A constant used as the tag of an @FT_Parameter structure to
48 * indicate that unpatented methods only should be used by the TrueType
49 * bytecode interpreter for a typeface opened by @FT_Open_Face.
50 *
51 */
52#define FT_PARAM_TAG_UNPATENTED_HINTING FT_MAKE_TAG( 'u', 'n', 'p', 'a' )
53
54 /* */
55
56
57FT_END_HEADER
58
59
60#endif /* TTUNPAT_H_ */
61
62
63/* END */