Minor renaming
diff --git a/src/hb-ot-map-private.hh b/src/hb-ot-map-private.hh
index 66e9b95..62fd605 100644
--- a/src/hb-ot-map-private.hh
+++ b/src/hb-ot-map-private.hh
@@ -68,8 +68,8 @@
typedef void (*pause_func_t) (const struct hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer);
struct stage_map_t {
- unsigned int num_lookups; /* Cumulative */
- pause_func_t callback;
+ unsigned int last_lookup; /* Cumulative */
+ pause_func_t pause_func;
};
@@ -111,8 +111,8 @@
return;
}
assert (stage <= stages[table_index].len);
- unsigned int start = stage ? stages[table_index][stage - 1].num_lookups : 0;
- unsigned int end = stage < stages[table_index].len ? stages[table_index][stage].num_lookups : lookups[table_index].len;
+ unsigned int start = stage ? stages[table_index][stage - 1].last_lookup : 0;
+ unsigned int end = stage < stages[table_index].len ? stages[table_index][stage].last_lookup : lookups[table_index].len;
*plookups = &lookups[table_index][start];
*lookup_count = end - start;
}
@@ -215,7 +215,7 @@
struct stage_info_t {
unsigned int index;
- hb_ot_map_t::pause_func_t callback;
+ hb_ot_map_t::pause_func_t pause_func;
};
HB_INTERNAL void add_pause (unsigned int table_index, hb_ot_map_t::pause_func_t pause_func);