From 3ebcd5a381e2de27a0cfb5af3359331f0b7e7108 Mon Sep 17 00:00:00 2001 From: Elie Roux Date: Sun, 5 Mar 2017 16:26:01 +0100 Subject: [PATCH] first working version! --- src/hb-ot-layout.cc | 2 ++ src/hb-ot.h | 1 + 2 files changed, 3 insertions(+) diff --git a/src/hb-ot-layout.cc b/src/hb-ot-layout.cc index 3511810ac..d393f5ca6 100644 --- a/src/hb-ot-layout.cc +++ b/src/hb-ot-layout.cc @@ -57,6 +57,7 @@ _hb_ot_layout_create (hb_face_t *face) layout->gpos = OT::Sanitizer::lock_instance (layout->gpos_blob); layout->math.init (face); + layout->base.init (face); layout->fvar.init (face); layout->avar.init (face); @@ -185,6 +186,7 @@ _hb_ot_layout_destroy (hb_ot_layout_t *layout) hb_blob_destroy (layout->gpos_blob); layout->math.fini (); + layout->base.fini (); layout->fvar.fini (); layout->avar.fini (); diff --git a/src/hb-ot.h b/src/hb-ot.h index 2120a3efa..272208e38 100644 --- a/src/hb-ot.h +++ b/src/hb-ot.h @@ -33,6 +33,7 @@ #include "hb-ot-font.h" #include "hb-ot-layout.h" #include "hb-ot-math.h" +#include "hb-ot-base.h" #include "hb-ot-tag.h" #include "hb-ot-shape.h" #include "hb-ot-var.h"