mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-13 00:32:59 +00:00
[COLR] Fix HB_LEAN build
This commit is contained in:
parent
ed76c8559e
commit
f26d9514b1
1 changed files with 5 additions and 1 deletions
|
@ -87,7 +87,11 @@ public:
|
|||
funcs (funcs_),
|
||||
data (data_),
|
||||
font (font_),
|
||||
palette (font->face->table.CPAL->get_palette_colors (palette_)),
|
||||
palette (
|
||||
#ifndef HB_NO_COLOR
|
||||
font->face->table.CPAL->get_palette_colors (palette_)
|
||||
#endif
|
||||
),
|
||||
foreground (foreground_),
|
||||
instancer (instancer_)
|
||||
{ }
|
||||
|
|
Loading…
Add table
Reference in a new issue