[wasm-api] Minor cleanup
This commit is contained in:
parent
8215e70632
commit
c5a88a068b
|
@ -275,7 +275,7 @@ typedef struct
|
||||||
#define FEATURE_GLOBAL_START 0
|
#define FEATURE_GLOBAL_START 0
|
||||||
#define FEATURE_GLOBAL_END ((uint32_t) -1)
|
#define FEATURE_GLOBAL_END ((uint32_t) -1)
|
||||||
|
|
||||||
HB_WASM_INTERFACE (bool_t, shape_with) (HB_WASM_EXEC_ENV
|
HB_WASM_API (bool_t, shape_with) (HB_WASM_EXEC_ENV
|
||||||
ptr_d(font_t, font),
|
ptr_d(font_t, font),
|
||||||
ptr_d(buffer_t, buffer),
|
ptr_d(buffer_t, buffer),
|
||||||
ptr_d(const feature_t, features),
|
ptr_d(const feature_t, features),
|
||||||
|
@ -284,18 +284,15 @@ HB_WASM_INTERFACE (bool_t, shape_with) (HB_WASM_EXEC_ENV
|
||||||
|
|
||||||
/* Implement these in your shaper. */
|
/* Implement these in your shaper. */
|
||||||
|
|
||||||
HB_WASM_INTERFACE (ptr_t(void), shape_plan_create) (HB_WASM_EXEC_ENV
|
HB_WASM_INTERFACE (ptr_t(void), shape_plan_create) (ptr_d(face_t, face));
|
||||||
ptr_d(face_t, face));
|
|
||||||
|
|
||||||
HB_WASM_INTERFACE (bool_t, shape) (HB_WASM_EXEC_ENV
|
HB_WASM_INTERFACE (bool_t, shape) (ptr_d(void, shape_plan),
|
||||||
ptr_d(void, shape_plan),
|
|
||||||
ptr_d(font_t, font),
|
ptr_d(font_t, font),
|
||||||
ptr_d(buffer_t, buffer),
|
ptr_d(buffer_t, buffer),
|
||||||
ptr_d(const feature_t, features),
|
ptr_d(const feature_t, features),
|
||||||
uint32_t num_features);
|
uint32_t num_features);
|
||||||
|
|
||||||
HB_WASM_INTERFACE (void, shape_plan_destroy) (HB_WASM_EXEC_ENV
|
HB_WASM_INTERFACE (void, shape_plan_destroy) (ptr_d(void, shape_plan));
|
||||||
ptr_d(void, shape_plan));
|
|
||||||
|
|
||||||
|
|
||||||
HB_WASM_END_DECLS
|
HB_WASM_END_DECLS
|
||||||
|
|
Loading…
Reference in New Issue