From: Behdad Esfahbod Date: Tue, 10 Jan 2017 05:18:55 +0000 (-0800) Subject: Minor X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=29fb0cb727555ea60460d794a3c6f30179546af9;p=platform%2Fupstream%2FlibHarfBuzzSharp.git Minor --- diff --git a/src/hb-face-private.hh b/src/hb-face-private.hh index c4266ff..43e7b1c 100644 --- a/src/hb-face-private.hh +++ b/src/hb-face-private.hh @@ -50,12 +50,16 @@ struct hb_face_t { void *user_data; hb_destroy_func_t destroy; - unsigned int index; - mutable unsigned int upem; - mutable unsigned int num_glyphs; + unsigned int index; /* Face index in a collection, zero-based. */ + mutable unsigned int upem; /* Units-per-EM. */ + mutable unsigned int num_glyphs; /* Number of glyphs. */ - struct hb_shaper_data_t shaper_data; + struct hb_shaper_data_t shaper_data; /* Various shaper data. */ + /* Various non-shaping data. */ + /* ... */ + + /* Cache */ struct plan_node_t { hb_shape_plan_t *shape_plan; plan_node_t *next;