RIP, Vernon...
[ttfautohint.git] / lib / tafeature.c
blob8e1bd73428c3b99353e360b3dde5a3b380484b19
1 /* tafeature.c */
3 /*
4 * Copyright (C) 2015-2016 by Werner Lemberg.
6 * This file is part of the ttfautohint library, and may only be used,
7 * modified, and distributed under the terms given in `COPYING'. By
8 * continuing to use, modify, or distribute this file you indicate that you
9 * have read `COPYING' and understand and accept it fully.
11 * The file `COPYING' mentioned in the previous paragraph is distributed
12 * with the ttfautohint library.
15 #include "tashaper.h"
18 #undef COVERAGE
19 #define COVERAGE(name, NAME, description, \
20 tag, tag1, tag2, tag3, tag4) \
21 HB_TAG(tag1, tag2, tag3, tag4),
23 const hb_tag_t feature_tags[] =
26 #include <ttfautohint-coverages.h>
28 HB_TAG('d', 'f', 'l', 't')
31 size_t feature_tags_size = sizeof (feature_tags) / sizeof (feature_tags[0]);
33 /* end of tafeature.c */