Call hb_ot_shape_setup_lookups_complex()

This commit is contained in:
Behdad Esfahbod 2010-10-06 00:23:36 -04:00
parent f1d07885dc
commit 98aa3f6544
1 changed files with 9 additions and 1 deletions

View File

@ -227,6 +227,14 @@ struct hb_mask_allocator_t {
hb_mask_t global_mask; hb_mask_t global_mask;
}; };
static void
hb_ot_shape_setup_lookups_complex (hb_ot_shape_context_t *c,
lookup_map *lookups,
unsigned int *num_lookups)
{
/* XXX */
}
static void static void
hb_ot_shape_setup_lookups (hb_ot_shape_context_t *c, hb_ot_shape_setup_lookups (hb_ot_shape_context_t *c,
lookup_map *lookups, lookup_map *lookups,
@ -265,7 +273,7 @@ hb_ot_shape_setup_lookups (hb_ot_shape_context_t *c,
for (i = 0; i < ARRAY_LENGTH (default_features); i++) for (i = 0; i < ARRAY_LENGTH (default_features); i++)
allocator.add_feature (default_features[i], 1, true); allocator.add_feature (default_features[i], 1, true);
/* XXX complex-shaper features go here */ hb_ot_shape_setup_lookups_complex (c, lookups, num_lookups);
for (unsigned int i = 0; i < c->num_features; i++) { for (unsigned int i = 0; i < c->num_features; i++) {
const hb_feature_t *feature = &c->features[i]; const hb_feature_t *feature = &c->features[i];