Add hb_ot_layout_ensure() and hb_uniscribe_font_ensure()
diff --git a/src/hb-uniscribe.cc b/src/hb-uniscribe.cc
index 4368f68..7d06a6b 100644
--- a/src/hb-uniscribe.cc
+++ b/src/hb-uniscribe.cc
@@ -56,6 +56,17 @@
*/
+HB_SHAPER_DATA_ENSURE_DECLARE(uniscribe, face)
+HB_SHAPER_DATA_ENSURE_DECLARE(uniscribe, font)
+hb_bool_t
+hb_uniscribe_font_ensure (hb_font_t *font)
+{
+ hb_face_t *face = font->face;
+ return hb_uniscribe_shaper_face_data_ensure (face) &&
+ hb_uniscribe_shaper_font_data_ensure (font);
+}
+
+
/*
* shaper face data
*/