[repack] Don't count space isolation against round limit.
Restore max rounds to 20 but don't count space isolation against the limit. The number of iterations space isolation can make changes for is already bounded to a reasonable max (the number of lookups in the font) so no need to cap the number of iterations.
This commit is contained in:
parent
a2f0723148
commit
9c2518988d
|
@ -157,7 +157,7 @@ template<typename T>
|
|||
inline hb_blob_t*
|
||||
hb_resolve_overflows (const T& packed,
|
||||
hb_tag_t table_tag,
|
||||
unsigned max_rounds = 40) {
|
||||
unsigned max_rounds = 20) {
|
||||
graph_t sorted_graph (packed);
|
||||
sorted_graph.sort_shortest_distance ();
|
||||
|
||||
|
@ -181,7 +181,7 @@ hb_resolve_overflows (const T& packed,
|
|||
// TODO(garretrieger): select a good limit for max rounds.
|
||||
while (!sorted_graph.in_error ()
|
||||
&& graph::will_overflow (sorted_graph, &overflows)
|
||||
&& round++ < max_rounds) {
|
||||
&& round < max_rounds) {
|
||||
DEBUG_MSG (SUBSET_REPACK, nullptr, "=== Overflow resolution round %d ===", round);
|
||||
print_overflows (sorted_graph, overflows);
|
||||
|
||||
|
@ -189,6 +189,9 @@ hb_resolve_overflows (const T& packed,
|
|||
|
||||
if (!_try_isolating_subgraphs (overflows, sorted_graph))
|
||||
{
|
||||
// Don't count space isolation towards round limit. Only increment
|
||||
// round counter if space isolation made no changes.
|
||||
round++;
|
||||
if (!_process_overflows (overflows, priority_bumped_parents, sorted_graph))
|
||||
{
|
||||
DEBUG_MSG (SUBSET_REPACK, nullptr, "No resolution available :(");
|
||||
|
|
Loading…
Reference in New Issue