[shape-plan] Minor
This commit is contained in:
parent
c7be933439
commit
7ac03f88a2
|
@ -303,6 +303,22 @@ hb_shape_plan_get_user_data (hb_shape_plan_t *shape_plan,
|
||||||
return hb_object_get_user_data (shape_plan, key);
|
return hb_object_get_user_data (shape_plan, key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* hb_shape_plan_get_shaper:
|
||||||
|
* @shape_plan: a shape plan.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Return value: (transfer none):
|
||||||
|
*
|
||||||
|
* Since: 0.9.7
|
||||||
|
**/
|
||||||
|
const char *
|
||||||
|
hb_shape_plan_get_shaper (hb_shape_plan_t *shape_plan)
|
||||||
|
{
|
||||||
|
return shape_plan->key.shaper_name;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hb_shape_plan_execute:
|
* hb_shape_plan_execute:
|
||||||
|
@ -520,19 +536,3 @@ retry:
|
||||||
|
|
||||||
return hb_shape_plan_reference (shape_plan);
|
return hb_shape_plan_reference (shape_plan);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* hb_shape_plan_get_shaper:
|
|
||||||
* @shape_plan: a shape plan.
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* Return value: (transfer none):
|
|
||||||
*
|
|
||||||
* Since: 0.9.7
|
|
||||||
**/
|
|
||||||
const char *
|
|
||||||
hb_shape_plan_get_shaper (hb_shape_plan_t *shape_plan)
|
|
||||||
{
|
|
||||||
return shape_plan->key.shaper_name;
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue