Cosmetic
This commit is contained in:
parent
cfbfeb88a6
commit
5814dfa3f5
|
@ -369,13 +369,13 @@ void
|
||||||
hb_ot_shape (hb_font_t *font,
|
hb_ot_shape (hb_font_t *font,
|
||||||
hb_face_t *face,
|
hb_face_t *face,
|
||||||
hb_buffer_t *buffer,
|
hb_buffer_t *buffer,
|
||||||
const hb_feature_t *user_features,
|
const hb_feature_t *features,
|
||||||
unsigned int num_user_features)
|
unsigned int num_features)
|
||||||
{
|
{
|
||||||
hb_ot_shape_plan_t plan;
|
hb_ot_shape_plan_t plan;
|
||||||
|
|
||||||
hb_ot_shape_plan_internal (&plan, face, &buffer->props, user_features, num_user_features);
|
hb_ot_shape_plan_internal (&plan, face, &buffer->props, features, num_features);
|
||||||
hb_ot_shape_execute (&plan, font, face, buffer, user_features, num_user_features);
|
hb_ot_shape_execute (&plan, font, face, buffer, features, num_features);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -37,8 +37,8 @@ void
|
||||||
hb_ot_shape (hb_font_t *font,
|
hb_ot_shape (hb_font_t *font,
|
||||||
hb_face_t *face,
|
hb_face_t *face,
|
||||||
hb_buffer_t *buffer,
|
hb_buffer_t *buffer,
|
||||||
const hb_feature_t *user_features,
|
const hb_feature_t *features,
|
||||||
unsigned int num_user_features);
|
unsigned int num_features);
|
||||||
|
|
||||||
|
|
||||||
HB_END_DECLS
|
HB_END_DECLS
|
||||||
|
|
|
@ -43,7 +43,7 @@ static void
|
||||||
hb_shape_internal (hb_font_t *font,
|
hb_shape_internal (hb_font_t *font,
|
||||||
hb_face_t *face,
|
hb_face_t *face,
|
||||||
hb_buffer_t *buffer,
|
hb_buffer_t *buffer,
|
||||||
hb_feature_t *features,
|
const hb_feature_t *features,
|
||||||
unsigned int num_features)
|
unsigned int num_features)
|
||||||
{
|
{
|
||||||
#if 0 && defined(HAVE_GRAPHITE)
|
#if 0 && defined(HAVE_GRAPHITE)
|
||||||
|
@ -65,7 +65,7 @@ void
|
||||||
hb_shape (hb_font_t *font,
|
hb_shape (hb_font_t *font,
|
||||||
hb_face_t *face,
|
hb_face_t *face,
|
||||||
hb_buffer_t *buffer,
|
hb_buffer_t *buffer,
|
||||||
hb_feature_t *features,
|
const hb_feature_t *features,
|
||||||
unsigned int num_features)
|
unsigned int num_features)
|
||||||
{
|
{
|
||||||
hb_segment_properties_t orig_props;
|
hb_segment_properties_t orig_props;
|
||||||
|
|
|
@ -45,7 +45,7 @@ void
|
||||||
hb_shape (hb_font_t *font,
|
hb_shape (hb_font_t *font,
|
||||||
hb_face_t *face,
|
hb_face_t *face,
|
||||||
hb_buffer_t *buffer,
|
hb_buffer_t *buffer,
|
||||||
hb_feature_t *features,
|
const hb_feature_t *features,
|
||||||
unsigned int num_features);
|
unsigned int num_features);
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue