[aat] Add buffer messages
This commit is contained in:
parent
af274507c4
commit
91519c6a5b
|
@ -614,9 +614,17 @@ struct Chain
|
||||||
unsigned int count = subtableCount;
|
unsigned int count = subtableCount;
|
||||||
for (unsigned int i = 0; i < count; i++)
|
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->apply (c);
|
||||||
subtable = &StructAfter<ChainSubtable> (*subtable);
|
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);
|
c->set_lookup_index (c->lookup_index + 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue