[glyf] minor

This commit is contained in:
Ebrahim Byagowi 2018-12-08 13:57:39 +03:30 committed by GitHub
parent f7cfe99815
commit 1683bb2c93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -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 */