aboutsummaryrefslogtreecommitdiff
path: root/src/hb-buffer.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/hb-buffer.hh')
-rw-r--r--src/hb-buffer.hh11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/hb-buffer.hh b/src/hb-buffer.hh
index bb1efe9dd..26c3f0fac 100644
--- a/src/hb-buffer.hh
+++ b/src/hb-buffer.hh
@@ -32,7 +32,6 @@
#include "hb.hh"
#include "hb-unicode.hh"
-#include "hb-set-digest.hh"
#ifndef HB_BUFFER_MAX_LEN_FACTOR
@@ -208,14 +207,6 @@ struct hb_buffer_t
hb_glyph_info_t &prev () { return out_info[out_len ? out_len - 1 : 0]; }
hb_glyph_info_t prev () const { return out_info[out_len ? out_len - 1 : 0]; }
- hb_set_digest_t digest () const
- {
- hb_set_digest_t d;
- d.init ();
- d.add_array (&info[0].codepoint, len, sizeof (info[0]));
- return d;
- }
-
HB_INTERNAL void similar (const hb_buffer_t &src);
HB_INTERNAL void reset ();
HB_INTERNAL void clear ();
@@ -411,8 +402,6 @@ struct hb_buffer_t
HB_INTERNAL void merge_out_clusters (unsigned int start, unsigned int end);
/* Merge clusters for deleting current glyph, and skip it. */
HB_INTERNAL void delete_glyph ();
- HB_INTERNAL void delete_glyphs_inplace (bool (*filter) (const hb_glyph_info_t *info));
-
/* Adds glyph flags in mask to infos with clusters between start and end.