vrshoot

diff libs/ft2static/freetype/internal/services/svkern.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/internal/services/svkern.h	Sat Feb 01 19:58:19 2014 +0200
     1.3 @@ -0,0 +1,51 @@
     1.4 +/***************************************************************************/
     1.5 +/*                                                                         */
     1.6 +/*  svkern.h                                                               */
     1.7 +/*                                                                         */
     1.8 +/*    The FreeType Kerning service (specification).                        */
     1.9 +/*                                                                         */
    1.10 +/*  Copyright 2006 by                                                      */
    1.11 +/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
    1.12 +/*                                                                         */
    1.13 +/*  This file is part of the FreeType project, and may only be used,       */
    1.14 +/*  modified, and distributed under the terms of the FreeType project      */
    1.15 +/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
    1.16 +/*  this file you indicate that you have read the license and              */
    1.17 +/*  understand and accept it fully.                                        */
    1.18 +/*                                                                         */
    1.19 +/***************************************************************************/
    1.20 +
    1.21 +
    1.22 +#ifndef __SVKERN_H__
    1.23 +#define __SVKERN_H__
    1.24 +
    1.25 +#include FT_INTERNAL_SERVICE_H
    1.26 +#include FT_TRUETYPE_TABLES_H
    1.27 +
    1.28 +
    1.29 +FT_BEGIN_HEADER
    1.30 +
    1.31 +#define FT_SERVICE_ID_KERNING  "kerning"
    1.32 +
    1.33 +
    1.34 +  typedef FT_Error
    1.35 +  (*FT_Kerning_TrackGetFunc)( FT_Face    face,
    1.36 +                              FT_Fixed   point_size,
    1.37 +                              FT_Int     degree,
    1.38 +                              FT_Fixed*  akerning );
    1.39 +
    1.40 +  FT_DEFINE_SERVICE( Kerning )
    1.41 +  {
    1.42 +    FT_Kerning_TrackGetFunc  get_track;
    1.43 +  };
    1.44 +
    1.45 +  /* */
    1.46 +
    1.47 +
    1.48 +FT_END_HEADER
    1.49 +
    1.50 +
    1.51 +#endif /* __SVKERN_H__ */
    1.52 +
    1.53 +
    1.54 +/* END */