summaryrefslogtreecommitdiff
path: root/src/hb-buffer-private.hh
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2011-07-28 15:42:18 -0400
committerBehdad Esfahbod <behdad@behdad.org>2011-07-28 15:42:18 -0400
commita9ad3d3460ba863a8d8f3766ccbeab288c3c6822 (patch)
tree6468fe3c65028704a2cf97539ff0ab90428fbb43 /src/hb-buffer-private.hh
parentcc06c243d8be3ebb1190281653d2dba504c16c0f (diff)
Move more code around
Buffer var allocation coming into shape
Diffstat (limited to 'src/hb-buffer-private.hh')
-rw-r--r--src/hb-buffer-private.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hb-buffer-private.hh b/src/hb-buffer-private.hh
index d83d1300..df8e7ee8 100644
--- a/src/hb-buffer-private.hh
+++ b/src/hb-buffer-private.hh
@@ -87,6 +87,7 @@ struct _hb_buffer_t {
HB_INTERNAL void allocate_var (unsigned int byte_i, unsigned int count, const char *owner);
HB_INTERNAL void deallocate_var (unsigned int byte_i, unsigned int count, const char *owner);
+ HB_INTERNAL void deallocate_var_all (void);
inline void allocate_var_8 (unsigned int var_num, unsigned int i, const char *owner)
{ assert (var_num < 2 && i < 4); allocate_var (var_num * 4 + i, 1, owner); }