[GSUB/GPOS] Trace toplevel sanitize

This commit is contained in:
Behdad Esfahbod 2022-07-11 13:39:21 -06:00
parent 7c4e9080c0
commit d15041be7d
2 changed files with 8 additions and 2 deletions

View File

@ -44,7 +44,10 @@ struct GPOS : GSUBGPOS
}
bool sanitize (hb_sanitize_context_t *c) const
{ return GSUBGPOS::sanitize<PosLookup> (c); }
{
TRACE_SANITIZE (this);
return_trace (GSUBGPOS::sanitize<PosLookup> (c));
}
HB_INTERNAL bool is_blocklisted (hb_blob_t *blob,
hb_face_t *face) const;

View File

@ -32,7 +32,10 @@ struct GSUB : GSUBGPOS
}
bool sanitize (hb_sanitize_context_t *c) const
{ return GSUBGPOS::sanitize<SubstLookup> (c); }
{
TRACE_SANITIZE (this);
return_trace (GSUBGPOS::sanitize<SubstLookup> (c));
}
HB_INTERNAL bool is_blocklisted (hb_blob_t *blob,
hb_face_t *face) const;