mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-14 17:13:40 +00:00
[gsubgpos] Avoid a copy into the vector
This commit is contained in:
parent
615595689c
commit
d2279a204f
1 changed files with 6 additions and 8 deletions
|
@ -957,17 +957,15 @@ struct hb_accelerate_subtables_context_t :
|
|||
template <typename T>
|
||||
return_t dispatch (const T &obj)
|
||||
{
|
||||
hb_applicable_t entry;
|
||||
hb_applicable_t *entry = array.push ();
|
||||
|
||||
entry.init (obj,
|
||||
apply_to<T>
|
||||
entry->init (obj,
|
||||
apply_to<T>
|
||||
#ifndef HB_NO_OT_LAYOUT_LOOKUP_CACHE
|
||||
, apply_cached_to<T>
|
||||
, cache_func_to<T>
|
||||
, apply_cached_to<T>
|
||||
, cache_func_to<T>
|
||||
#endif
|
||||
);
|
||||
|
||||
array.push (entry);
|
||||
);
|
||||
|
||||
#ifndef HB_NO_OT_LAYOUT_LOOKUP_CACHE
|
||||
/* Cache handling
|
||||
|
|
Loading…
Add table
Reference in a new issue