From 1683bb2c9337fa34e5e80d459ab5eab99d7a9804 Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Sat, 8 Dec 2018 13:57:39 +0330 Subject: [PATCH] [glyf] minor --- src/hb-ot-glyf-table.hh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/hb-ot-glyf-table.hh b/src/hb-ot-glyf-table.hh index 23d16a7..ad047a2 100644 --- a/src/hb-ot-glyf-table.hh +++ b/src/hb-ot-glyf-table.hh @@ -271,11 +271,14 @@ struct glyf } enum simple_glyph_flag_t { + FLAG_ON_CURVE = 0x01, FLAG_X_SHORT = 0x02, FLAG_Y_SHORT = 0x04, FLAG_REPEAT = 0x08, FLAG_X_SAME = 0x10, - FLAG_Y_SAME = 0x20 + FLAG_Y_SAME = 0x20, + FLAG_RESERVED1 = 0x40, + FLAG_RESERVED2 = 0x80 }; /* based on FontTools _g_l_y_f.py::trim */ -- 2.7.4