Minor
This commit is contained in:
parent
5360ce0c5c
commit
5b88908f12
|
@ -236,14 +236,6 @@ 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,
|
||||||
|
@ -269,7 +261,7 @@ hb_ot_shape_setup_lookups (hb_ot_shape_context_t *c,
|
||||||
for (unsigned int i = 0; i < ARRAY_LENGTH (default_features); i++)
|
for (unsigned int i = 0; i < ARRAY_LENGTH (default_features); i++)
|
||||||
allocator.add_feature (default_features[i], 1, true);
|
allocator.add_feature (default_features[i], 1, true);
|
||||||
|
|
||||||
hb_ot_shape_setup_lookups_complex (c, lookups, num_lookups);
|
/* complex */
|
||||||
|
|
||||||
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];
|
||||||
|
@ -326,6 +318,10 @@ hb_ot_shape_setup_lookups (hb_ot_shape_context_t *c,
|
||||||
|
|
||||||
/* Set masks in buffer */
|
/* Set masks in buffer */
|
||||||
|
|
||||||
|
hb_mask_t global_mask = allocator.get_global_mask ();
|
||||||
|
if (global_mask)
|
||||||
|
c->buffer->set_masks (global_mask, global_mask, 0, (unsigned int) -1);
|
||||||
|
|
||||||
for (unsigned int i = 0; i < c->num_features; i++)
|
for (unsigned int i = 0; i < c->num_features; i++)
|
||||||
{
|
{
|
||||||
hb_feature_t *feature = &c->features[i];
|
hb_feature_t *feature = &c->features[i];
|
||||||
|
@ -334,9 +330,7 @@ hb_ot_shape_setup_lookups (hb_ot_shape_context_t *c,
|
||||||
c->buffer->set_masks (feature->value << map->shift, map->mask, feature->start, feature->end);
|
c->buffer->set_masks (feature->value << map->shift, map->mask, feature->start, feature->end);
|
||||||
}
|
}
|
||||||
|
|
||||||
hb_mask_t global_mask = allocator.get_global_mask ();
|
/* complex */
|
||||||
if (global_mask)
|
|
||||||
c->buffer->set_masks (global_mask, global_mask, 0, (unsigned int) -1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue