mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-13 00:32:59 +00:00
[aat] Fix HB_NO_OT_LAYOUT build
This commit is contained in:
parent
8a8fc37c42
commit
0c1637b606
1 changed files with 7 additions and 1 deletions
|
@ -55,7 +55,13 @@ AAT::hb_aat_apply_context_t::hb_aat_apply_context_t (const hb_ot_shape_plan_t *p
|
|||
buffer (buffer_),
|
||||
sanitizer (),
|
||||
ankr_table (&Null (AAT::ankr)),
|
||||
gdef_table (face->table.GDEF->table),
|
||||
gdef_table (
|
||||
#ifndef HB_NO_OT_LAYOUT
|
||||
face->table.GDEF->table
|
||||
#else
|
||||
&Null (GDEF)
|
||||
#endif
|
||||
),
|
||||
lookup_index (0)
|
||||
{
|
||||
sanitizer.init (blob);
|
||||
|
|
Loading…
Add table
Reference in a new issue