This commit is contained in:
Behdad Esfahbod 2012-05-13 15:21:06 +02:00
parent 5df809b655
commit 6736f3c5b0
1 changed files with 3 additions and 4 deletions

View File

@ -115,12 +115,11 @@ struct hb_apply_context_t
hb_apply_context_t (hb_font_t *font_, hb_apply_context_t (hb_font_t *font_,
hb_face_t *face_, hb_face_t *face_,
hb_buffer_t *buffer_, hb_buffer_t *buffer_,
hb_mask_t lookup_mask_, hb_mask_t lookup_mask_) :
unsigned int nesting_level_left_ = MAX_NESTING_LEVEL) :
font (font_), face (face_), buffer (buffer_), font (font_), face (face_), buffer (buffer_),
direction (buffer_->props.direction), direction (buffer_->props.direction),
lookup_mask (lookup_mask_), lookup_mask (lookup_mask_),
nesting_level_left (nesting_level_left_), nesting_level_left (MAX_NESTING_LEVEL),
lookup_props (0), property (0), debug_depth (0) {} lookup_props (0), property (0), debug_depth (0) {}
void set_lookup (const Lookup &l) { void set_lookup (const Lookup &l) {