Change hb_feature_t to keep tag/int instead of string
authorBehdad Esfahbod <behdad@behdad.org>
Thu, 20 May 2010 12:30:09 +0000 (13:30 +0100)
committerBehdad Esfahbod <behdad@behdad.org>
Thu, 20 May 2010 12:30:09 +0000 (13:30 +0100)
src/hb-shape.h

index 621c6ab..d5210f3 100644 (file)
@@ -34,8 +34,8 @@
 HB_BEGIN_DECLS
 
 typedef struct _hb_feature_t {
-  const char   *name;
-  const char   *value;
+  hb_tag_t      tag;
+  uint32_t      value;
   unsigned int  start;
   unsigned int  end;
 } hb_feature_t;