Remove excessive trace routes
This commit is contained in:
parent
e47a2ab8f8
commit
d7d8604ec8
|
@ -373,10 +373,6 @@ struct hb_no_trace_t {
|
||||||
#define HB_DEBUG_FT (HB_DEBUG+0)
|
#define HB_DEBUG_FT (HB_DEBUG+0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef HB_DEBUG_GET_COVERAGE
|
|
||||||
#define HB_DEBUG_GET_COVERAGE (HB_DEBUG+0)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef HB_DEBUG_OBJECT
|
#ifndef HB_DEBUG_OBJECT
|
||||||
#define HB_DEBUG_OBJECT (HB_DEBUG+0)
|
#define HB_DEBUG_OBJECT (HB_DEBUG+0)
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -302,9 +302,8 @@ struct hb_collect_glyphs_context_t :
|
||||||
|
|
||||||
template <typename set_t>
|
template <typename set_t>
|
||||||
struct hb_collect_coverage_context_t :
|
struct hb_collect_coverage_context_t :
|
||||||
hb_dispatch_context_t<hb_collect_coverage_context_t<set_t>, const Coverage &, HB_DEBUG_GET_COVERAGE>
|
hb_dispatch_context_t<hb_collect_coverage_context_t<set_t>, const Coverage &, 0>
|
||||||
{
|
{
|
||||||
const char *get_name () { return "GET_COVERAGE"; }
|
|
||||||
typedef const Coverage &return_t;
|
typedef const Coverage &return_t;
|
||||||
template <typename T>
|
template <typename T>
|
||||||
return_t dispatch (const T &obj) { return obj.get_coverage (); }
|
return_t dispatch (const T &obj) { return obj.get_coverage (); }
|
||||||
|
@ -695,7 +694,7 @@ struct hb_ot_apply_context_t :
|
||||||
|
|
||||||
|
|
||||||
struct hb_get_subtables_context_t :
|
struct hb_get_subtables_context_t :
|
||||||
hb_dispatch_context_t<hb_get_subtables_context_t, hb_empty_t, HB_DEBUG_APPLY>
|
hb_dispatch_context_t<hb_get_subtables_context_t, hb_empty_t, 0>
|
||||||
{
|
{
|
||||||
template <typename Type>
|
template <typename Type>
|
||||||
static inline bool apply_to (const void *obj, OT::hb_ot_apply_context_t *c)
|
static inline bool apply_to (const void *obj, OT::hb_ot_apply_context_t *c)
|
||||||
|
@ -731,7 +730,6 @@ struct hb_get_subtables_context_t :
|
||||||
typedef hb_vector_t<hb_applicable_t> array_t;
|
typedef hb_vector_t<hb_applicable_t> array_t;
|
||||||
|
|
||||||
/* Dispatch interface. */
|
/* Dispatch interface. */
|
||||||
const char *get_name () { return "GET_SUBTABLES"; }
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
return_t dispatch (const T &obj)
|
return_t dispatch (const T &obj)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue