[wasm] Minor remove undefine function
This commit is contained in:
parent
b08026187a
commit
6746ca4ae2
|
@ -3,7 +3,6 @@
|
||||||
#include <hb-wasm-api.h>
|
#include <hb-wasm-api.h>
|
||||||
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
void abort ();
|
|
||||||
void debugprint (const char *s);
|
void debugprint (const char *s);
|
||||||
void debugprint1 (const char *s, int32_t);
|
void debugprint1 (const char *s, int32_t);
|
||||||
void debugprint2 (const char *s, int32_t, int32_t);
|
void debugprint2 (const char *s, int32_t, int32_t);
|
||||||
|
@ -19,8 +18,7 @@ shape (void *shape_plan,
|
||||||
face_t *face = font_get_face (font);
|
face_t *face = font_get_face (font);
|
||||||
|
|
||||||
blob_t blob = BLOB_INIT;
|
blob_t blob = BLOB_INIT;
|
||||||
if (!face_copy_table (face, TAG ('c','m','a','p'), &blob))
|
face_copy_table (face, TAG ('c','m','a','p'), &blob);
|
||||||
abort ();
|
|
||||||
|
|
||||||
debugprint1 ("cmap length", blob.length);
|
debugprint1 ("cmap length", blob.length);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue