[aat] Add buffer messages

This commit is contained in:
Behdad Esfahbod 2018-02-10 13:35:17 -06:00
parent af274507c4
commit 91519c6a5b
1 changed files with 8 additions and 0 deletions

View File

@ -614,9 +614,17 @@ struct Chain
unsigned int count = subtableCount;
for (unsigned int i = 0; i < count; i++)
{
if (!c->buffer->message (c->font, "start chain subtable %d", c->lookup_index))
{
c->set_lookup_index (c->lookup_index + 1);
continue;
}
subtable->apply (c);
subtable = &StructAfter<ChainSubtable> (*subtable);
(void) c->buffer->message (c->font, "end chain subtable %d", c->lookup_index);
c->set_lookup_index (c->lookup_index + 1);
}
}