misc/libfreetype/src/gxvalid/gxvfeat.h
author belphegorr <szabibibi@gmail.com>
Mon, 23 Jul 2012 19:15:59 +0300
changeset 7263 644eabbc9218
parent 5172 88f2e05288ba
permissions -rw-r--r--
Added a new function: AddNewEvent, which only adds an event to the list if it doesn't already exist. Kept the old one as it might me useful to be able to add an event more than once.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5172
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     1
/***************************************************************************/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     2
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     3
/*  gxvfeat.h                                                              */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     4
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     5
/*    TrueTypeGX/AAT feat table validation (specification).                */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     6
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     7
/*  Copyright 2004, 2005 by suzuki toshiya, Masatake YAMATO, Red Hat K.K., */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     8
/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     9
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    10
/*  This file is part of the FreeType project, and may only be used,       */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    11
/*  modified, and distributed under the terms of the FreeType project      */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    12
/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    13
/*  this file you indicate that you have read the license and              */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    14
/*  understand and accept it fully.                                        */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    15
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    16
/***************************************************************************/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    17
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    18
/***************************************************************************/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    19
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    20
/* gxvalid is derived from both gxlayout module and otvalid module.        */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    21
/* Development of gxlayout is supported by the Information-technology      */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    22
/* Promotion Agency(IPA), Japan.                                           */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    23
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    24
/***************************************************************************/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    25
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    26
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    27
#ifndef __GXVFEAT_H__
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    28
#define __GXVFEAT_H__
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    29
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    30
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    31
#include "gxvalid.h"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    32
#include "gxvcommn.h"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    33
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    34
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    35
  /*************************************************************************/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    36
  /*************************************************************************/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    37
  /*****                                                               *****/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    38
  /*****                Registry predefined by Apple                   *****/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    39
  /*****                                                               *****/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    40
  /*************************************************************************/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    41
  /*************************************************************************/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    42
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    43
  /* TODO: More compact format */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    44
  typedef struct  GXV_Feature_RegistryRec_
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    45
  {
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    46
    FT_Bool  existence;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    47
    FT_Bool  apple_reserved;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    48
    FT_Bool  exclusive;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    49
    FT_Byte  nSettings;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    50
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    51
  } GX_Feature_RegistryRec;
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    52
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    53
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    54
#define gxv_feat_registry_length                  \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    55
          ( sizeof ( gxv_feat_registry ) /        \
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    56
              sizeof ( GX_Feature_RegistryRec ) )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    57
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    58
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    59
  static GX_Feature_RegistryRec  gxv_feat_registry[] =
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    60
  {
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    61
    /* Generated from gxvfgen.c */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    62
    {1, 0, 0,  1},   /* All Typographic Features */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    63
    {1, 0, 0,  8},   /* Ligatures */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    64
    {1, 0, 1,  3},   /* Cursive Connection */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    65
    {1, 0, 1,  6},   /* Letter Case */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    66
    {1, 0, 0,  1},   /* Vertical Substitution */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    67
    {1, 0, 0,  1},   /* Linguistic Rearrangement */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    68
    {1, 0, 1,  2},   /* Number Spacing */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    69
    {1, 1, 0,  0},   /* Apple Reserved 1 */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    70
    {1, 0, 0,  5},   /* Smart Swashes */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    71
    {1, 0, 1,  3},   /* Diacritics */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    72
    {1, 0, 1,  4},   /* Vertical Position */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    73
    {1, 0, 1,  3},   /* Fractions */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    74
    {1, 1, 0,  0},   /* Apple Reserved 2 */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    75
    {1, 0, 0,  1},   /* Overlapping Characters */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    76
    {1, 0, 0,  6},   /* Typographic Extras */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    77
    {1, 0, 0,  5},   /* Mathematical Extras */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    78
    {1, 0, 1,  7},   /* Ornament Sets */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    79
    {1, 0, 1,  1},   /* Character Alternatives */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    80
    {1, 0, 1,  5},   /* Design Complexity */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    81
    {1, 0, 1,  6},   /* Style Options */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    82
    {1, 0, 1, 11},   /* Character Shape */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    83
    {1, 0, 1,  2},   /* Number Case */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    84
    {1, 0, 1,  4},   /* Text Spacing */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    85
    {1, 0, 1, 10},   /* Transliteration */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    86
    {1, 0, 1,  9},   /* Annotation */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    87
    {1, 0, 1,  2},   /* Kana Spacing */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    88
    {1, 0, 1,  2},   /* Ideographic Spacing */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    89
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    90
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    91
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    92
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    93
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    94
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    95
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    96
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    97
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    98
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    99
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   100
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   101
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   102
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   103
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   104
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   105
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   106
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   107
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   108
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   109
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   110
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   111
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   112
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   113
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   114
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   115
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   116
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   117
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   118
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   119
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   120
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   121
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   122
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   123
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   124
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   125
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   126
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   127
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   128
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   129
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   130
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   131
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   132
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   133
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   134
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   135
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   136
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   137
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   138
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   139
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   140
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   141
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   142
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   143
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   144
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   145
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   146
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   147
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   148
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   149
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   150
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   151
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   152
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   153
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   154
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   155
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   156
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   157
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   158
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   159
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   160
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   161
    {0, 0, 0,  0},   /* __EMPTY__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   162
    {1, 0, 1,  4},   /* Text Spacing */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   163
    {1, 0, 1,  2},   /* Kana Spacing */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   164
    {1, 0, 1,  2},   /* Ideographic Spacing */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   165
    {1, 0, 1,  4},   /* CJK Roman Spacing */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   166
  };
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   167
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   168
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   169
#endif /* __GXVFEAT_H__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   170
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   171
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   172
/* END */