mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-07 22:41:27 +00:00
Another try
This commit is contained in:
parent
483d4a8741
commit
49dbe0cd30
1 changed files with 4 additions and 2 deletions
|
@ -1425,8 +1425,10 @@ struct PaintComposite
|
|||
auto *out = c->serializer->embed (this);
|
||||
if (unlikely (!out)) return_trace (false);
|
||||
|
||||
return_trace (out->src.serialize_subset (c, src, this, instancer) |
|
||||
out->backdrop.serialize_subset (c, backdrop, this, instancer));
|
||||
bool ret = false;
|
||||
ret |= out->src.serialize_subset (c, src, this, instancer);
|
||||
ret |= out->backdrop.serialize_subset (c, backdrop, this, instancer);
|
||||
return_trace (ret);
|
||||
}
|
||||
|
||||
bool sanitize (hb_sanitize_context_t *c) const
|
||||
|
|
Loading…
Add table
Reference in a new issue