vrshoot

diff libs/ft2static/freetype/ttunpat.h @ 0:b2f14e535253

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 01 Feb 2014 19:58:19 +0200
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libs/ft2static/freetype/ttunpat.h	Sat Feb 01 19:58:19 2014 +0200
     1.3 @@ -0,0 +1,59 @@
     1.4 +/***************************************************************************/
     1.5 +/*                                                                         */
     1.6 +/*  ttunpat.h                                                              */
     1.7 +/*                                                                         */
     1.8 +/*    Definitions for the unpatented TrueType hinting system               */
     1.9 +/*                                                                         */
    1.10 +/*  Copyright 2003, 2006 by                                                */
    1.11 +/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
    1.12 +/*                                                                         */
    1.13 +/*  Written by Graham Asher <graham.asher@btinternet.com>                  */
    1.14 +/*                                                                         */
    1.15 +/*  This file is part of the FreeType project, and may only be used,       */
    1.16 +/*  modified, and distributed under the terms of the FreeType project      */
    1.17 +/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
    1.18 +/*  this file you indicate that you have read the license and              */
    1.19 +/*  understand and accept it fully.                                        */
    1.20 +/*                                                                         */
    1.21 +/***************************************************************************/
    1.22 +
    1.23 +
    1.24 +#ifndef __TTUNPAT_H__
    1.25 +#define __TTUNPAT_H__
    1.26 +
    1.27 +
    1.28 +#include <ft2build.h>
    1.29 +#include FT_FREETYPE_H
    1.30 +
    1.31 +#ifdef FREETYPE_H
    1.32 +#error "freetype.h of FreeType 1 has been loaded!"
    1.33 +#error "Please fix the directory search order for header files"
    1.34 +#error "so that freetype.h of FreeType 2 is found first."
    1.35 +#endif
    1.36 +
    1.37 +
    1.38 +FT_BEGIN_HEADER
    1.39 +
    1.40 +
    1.41 + /***************************************************************************
    1.42 +  *
    1.43 +  * @constant:
    1.44 +  *   FT_PARAM_TAG_UNPATENTED_HINTING
    1.45 +  *
    1.46 +  * @description:
    1.47 +  *   A constant used as the tag of an @FT_Parameter structure to indicate
    1.48 +  *   that unpatented methods only should be used by the TrueType bytecode
    1.49 +  *   interpreter for a typeface opened by @FT_Open_Face.
    1.50 +  *
    1.51 +  */
    1.52 +#define FT_PARAM_TAG_UNPATENTED_HINTING  FT_MAKE_TAG( 'u', 'n', 'p', 'a' )
    1.53 +
    1.54 + /* */
    1.55 +
    1.56 +FT_END_HEADER
    1.57 +
    1.58 +
    1.59 +#endif /* __TTUNPAT_H__ */
    1.60 +
    1.61 +
    1.62 +/* END */