From 50193262f0d8aa1c2d6a2a2e4b68f8d2771157b3 Mon Sep 17 00:00:00 2001 From: Garret Rieger Date: Wed, 25 Aug 2021 15:10:21 -0700 Subject: [PATCH] [subset] reorder set enums. --- src/hb-subset.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/hb-subset.h b/src/hb-subset.h index 4b0b79303..079db2872 100644 --- a/src/hb-subset.h +++ b/src/hb-subset.h @@ -83,14 +83,14 @@ typedef enum { /*< flags >*/ * hb_subset_sets_t: * HB_SUBSET_SETS_GLYPH_INDEX: the set of glyph indexes to retain in the subset. * HB_SUBSET_SETS_UNICODE: the set of unicode codepoints to retain in the subset. - * @HB_SUBSET_SETS_LAYOUT_FEATURE_TAG: the set of layout feature tags that will be retained - * in the subset. - * @HB_SUBSET_SETS_NAME_ID: the set of name ids that will be retained. - * @HB_SUBSET_SETS_NAME_LANG_ID: the set of name lang ids that will be retained. * @HB_SUBSET_SETS_NO_SUBSET_TABLE_TAG: the set of table tags which specifies tables that should not be * subsetted. * @HB_SUBSET_SETS_DROP_TABLE_TAG: the set of table tags which specifies tables which will be dropped * in the subset. + * @HB_SUBSET_SETS_NAME_ID: the set of name ids that will be retained. + * @HB_SUBSET_SETS_NAME_LANG_ID: the set of name lang ids that will be retained. + * @HB_SUBSET_SETS_LAYOUT_FEATURE_TAG: the set of layout feature tags that will be retained + * in the subset. * * List of sets that can be configured on the subset input. * @@ -99,11 +99,11 @@ typedef enum { /*< flags >*/ typedef enum { HB_SUBSET_SETS_GLYPH_INDEX = 0, HB_SUBSET_SETS_UNICODE, - HB_SUBSET_SETS_LAYOUT_FEATURE_TAG, - HB_SUBSET_SETS_NAME_ID, - HB_SUBSET_SETS_NAME_LANG_ID, HB_SUBSET_SETS_NO_SUBSET_TABLE_TAG, HB_SUBSET_SETS_DROP_TABLE_TAG, + HB_SUBSET_SETS_NAME_ID, + HB_SUBSET_SETS_NAME_LANG_ID, + HB_SUBSET_SETS_LAYOUT_FEATURE_TAG, } hb_subset_sets_t; HB_EXTERN hb_subset_input_t *