[GSUB/GPOS] Trace toplevel sanitize
This commit is contained in:
parent
7c4e9080c0
commit
d15041be7d
|
@ -44,7 +44,10 @@ struct GPOS : GSUBGPOS
|
||||||
}
|
}
|
||||||
|
|
||||||
bool sanitize (hb_sanitize_context_t *c) const
|
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_INTERNAL bool is_blocklisted (hb_blob_t *blob,
|
||||||
hb_face_t *face) const;
|
hb_face_t *face) const;
|
||||||
|
|
|
@ -32,7 +32,10 @@ struct GSUB : GSUBGPOS
|
||||||
}
|
}
|
||||||
|
|
||||||
bool sanitize (hb_sanitize_context_t *c) const
|
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_INTERNAL bool is_blocklisted (hb_blob_t *blob,
|
||||||
hb_face_t *face) const;
|
hb_face_t *face) const;
|
||||||
|
|
Loading…
Reference in New Issue