[doc] Various fixes to newly added documentation
This commit is contained in:
parent
924dd71de3
commit
1b5a2e0809
|
@ -141,7 +141,6 @@
|
|||
<index id="api-index-1-8-1" role="1.8.1"><title>Index of new symbols in 1.8.1</title><xi:include href="xml/api-index-1.8.1.xml"><xi:fallback /></xi:include></index>
|
||||
<index id="api-index-1-8-0" role="1.8.0"><title>Index of new symbols in 1.8.0</title><xi:include href="xml/api-index-1.8.0.xml"><xi:fallback /></xi:include></index>
|
||||
<index id="api-index-1-7-7" role="1.7.7"><title>Index of new symbols in 1.7.7</title><xi:include href="xml/api-index-1.7.7.xml"><xi:fallback /></xi:include></index>
|
||||
<index id="api-index-1-7-5" role="1.7.5"><title>Index of new symbols in 1.7.5</title><xi:include href="xml/api-index-1.7.5.xml"><xi:fallback /></xi:include></index>
|
||||
<index id="api-index-1-7-2" role="1.7.2"><title>Index of new symbols in 1.7.2</title><xi:include href="xml/api-index-1.7.2.xml"><xi:fallback /></xi:include></index>
|
||||
<index id="api-index-1-6-0" role="1.6.0"><title>Index of new symbols in 1.6.0</title><xi:include href="xml/api-index-1.6.0.xml"><xi:fallback /></xi:include></index>
|
||||
<index id="api-index-1-5-0" role="1.5.0"><title>Index of new symbols in 1.5.0</title><xi:include href="xml/api-index-1.5.0.xml"><xi:fallback /></xi:include></index>
|
||||
|
|
|
@ -756,6 +756,7 @@ hb_style_get_value
|
|||
hb_subset_flags_t
|
||||
hb_subset_input_t
|
||||
hb_subset_sets_t
|
||||
hb_subset_plan_t
|
||||
hb_subset_input_create_or_fail
|
||||
hb_subset_input_reference
|
||||
hb_subset_input_destroy
|
||||
|
@ -766,5 +767,14 @@ hb_subset_input_set_flags
|
|||
hb_subset_input_unicode_set
|
||||
hb_subset_input_glyph_set
|
||||
hb_subset_input_set
|
||||
hb_subset_plan_create_or_fail
|
||||
hb_subset_plan_reference
|
||||
hb_subset_plan_destroy
|
||||
hb_subset_plan_set_user_data
|
||||
hb_subset_plan_get_user_data
|
||||
hb_subset_plan_execute_or_fail
|
||||
hb_subset_plan_codepoint_to_old_glyph_mapping
|
||||
hb_subset_plan_new_to_old_glyph_mapping
|
||||
hb_subset_plan_old_to_new_glyph_mapping
|
||||
hb_subset_or_fail
|
||||
</SECTION>
|
||||
|
|
|
@ -373,6 +373,7 @@ hb_buffer_guess_segment_properties (hb_buffer_t *buffer);
|
|||
* flag indicating that the @HB_GLYPH_FLAG_UNSAFE_TO_CONCAT
|
||||
* glyph-flag should be produced by the shaper. By default
|
||||
* it will not be produced since it incurs a cost. Since: REPLACEME
|
||||
*
|
||||
* Flags for #hb_buffer_t.
|
||||
*
|
||||
* Since: 0.9.20
|
||||
|
|
|
@ -607,9 +607,11 @@ hb_subset_plan_destroy (hb_subset_plan_t *plan)
|
|||
* hb_subset_plan_old_to_new_glyph_mapping:
|
||||
* @plan: a subsetting plan.
|
||||
*
|
||||
* Return value:
|
||||
* the mapping between glyphs in the original font to glyphs
|
||||
* in the subset that will be produced by @plan.
|
||||
* Returns the mapping between glyphs in the original font to glyphs in the
|
||||
* subset that will be produced by @plan
|
||||
*
|
||||
* Return value: (transfer none):
|
||||
* A pointer to the #hb_map_t of the mapping.
|
||||
*
|
||||
* Since: REPLACEME
|
||||
**/
|
||||
|
@ -620,12 +622,15 @@ hb_subset_plan_old_to_new_glyph_mapping (const hb_subset_plan_t *plan)
|
|||
}
|
||||
|
||||
/**
|
||||
* hb_subset_plan_old_to_new_glyph_mapping:
|
||||
* hb_subset_plan_new_to_old_glyph_mapping:
|
||||
* @plan: a subsetting plan.
|
||||
*
|
||||
* Returns the mapping between glyphs in the subset that will be produced by
|
||||
* @plan and the glyph in the original font.
|
||||
*
|
||||
* Return value: (transfer none):
|
||||
* A pointer to the #hb_map_t of the mapping.
|
||||
*
|
||||
* Since: REPLACEME
|
||||
**/
|
||||
const hb_map_t*
|
||||
|
@ -635,12 +640,15 @@ hb_subset_plan_new_to_old_glyph_mapping (const hb_subset_plan_t *plan)
|
|||
}
|
||||
|
||||
/**
|
||||
* hb_subset_plan_old_to_new_glyph_mapping:
|
||||
* hb_subset_plan_codepoint_to_old_glyph_mapping:
|
||||
* @plan: a subsetting plan.
|
||||
*
|
||||
* Returns the mapping between codepoints in the original font and the
|
||||
* associated glyph id in the original font.
|
||||
*
|
||||
* Return value: (transfer none):
|
||||
* A pointer to the #hb_map_t of the mapping.
|
||||
*
|
||||
* Since: REPLACEME
|
||||
**/
|
||||
const hb_map_t*
|
||||
|
|
Loading…
Reference in New Issue