mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[instancer] Promote partial instancing api out of experimental.
This commit is contained in:
parent
c04d0a295f
commit
4cf606f674
10 changed files with 21 additions and 39 deletions
|
@ -889,6 +889,8 @@ hb_subset_input_old_to_new_glyph_mapping
|
|||
hb_subset_input_pin_all_axes_to_default
|
||||
hb_subset_input_pin_axis_location
|
||||
hb_subset_input_pin_axis_to_default
|
||||
hb_subset_input_get_axis_range
|
||||
hb_subset_input_set_axis_range
|
||||
hb_subset_or_fail
|
||||
hb_subset_plan_create_or_fail
|
||||
hb_subset_plan_reference
|
||||
|
@ -909,8 +911,6 @@ hb_link_t
|
|||
hb_object_t
|
||||
hb_subset_repack_or_fail
|
||||
hb_subset_input_override_name_table
|
||||
hb_subset_input_set_axis_range
|
||||
hb_subset_input_get_axis_range
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
|
|
|
@ -195,9 +195,7 @@ static void BM_subset (benchmark::State &state,
|
|||
AddCodepoints(all_codepoints, subset_size, input);
|
||||
hb_set_destroy (all_codepoints);
|
||||
|
||||
#ifdef HB_EXPERIMENTAL_API
|
||||
hb_subset_input_set_flags(input, hb_subset_input_get_flags(input) | HB_SUBSET_FLAGS_OPTIMIZE_IUP_DELTAS);
|
||||
#endif
|
||||
|
||||
for (unsigned i = 0; i < test_input.num_instance_opts; i++)
|
||||
hb_subset_input_pin_axis_location (input, face,
|
||||
|
|
|
@ -22,8 +22,6 @@ if '--experimental-api' not in sys.argv:
|
|||
"""hb_shape_justify
|
||||
hb_subset_repack_or_fail
|
||||
hb_subset_input_override_name_table
|
||||
hb_subset_input_set_axis_range
|
||||
hb_subset_input_get_axis_range
|
||||
""".splitlines ()
|
||||
symbols = [x for x in symbols if x not in experimental_symbols]
|
||||
symbols = "\n".join (symbols)
|
||||
|
|
|
@ -102,9 +102,8 @@ struct glyph_variations_t
|
|||
}
|
||||
|
||||
bool is_composite_glyph = false;
|
||||
#ifdef HB_EXPERIMENTAL_API
|
||||
is_composite_glyph = plan->composite_new_gids.has (new_gid);
|
||||
#endif
|
||||
|
||||
if (!p->decompile_tuple_variations (all_contour_points->length, true /* is_gvar */,
|
||||
iterator, &(plan->axes_old_index_tag_map),
|
||||
shared_indices, shared_tuples,
|
||||
|
@ -120,9 +119,7 @@ struct glyph_variations_t
|
|||
{
|
||||
unsigned count = plan->new_to_old_gid_list.length;
|
||||
bool iup_optimize = false;
|
||||
#ifdef HB_EXPERIMENTAL_API
|
||||
iup_optimize = plan->flags & HB_SUBSET_FLAGS_OPTIMIZE_IUP_DELTAS;
|
||||
#endif
|
||||
for (unsigned i = 0; i < count; i++)
|
||||
{
|
||||
hb_codepoint_t new_gid = plan->new_to_old_gid_list[i].first;
|
||||
|
|
|
@ -515,7 +515,6 @@ hb_subset_input_pin_axis_location (hb_subset_input_t *input,
|
|||
return input->axes_location.set (axis_tag, Triple (val, val, val));
|
||||
}
|
||||
|
||||
#ifdef HB_EXPERIMENTAL_API
|
||||
/**
|
||||
* hb_subset_input_set_axis_range: (skip)
|
||||
* @input: a #hb_subset_input_t object.
|
||||
|
@ -538,7 +537,7 @@ hb_subset_input_pin_axis_location (hb_subset_input_t *input,
|
|||
*
|
||||
* Return value: `true` if success, `false` otherwise
|
||||
*
|
||||
* XSince: EXPERIMENTAL
|
||||
* XSince: REPLACEME
|
||||
**/
|
||||
HB_EXTERN hb_bool_t
|
||||
hb_subset_input_set_axis_range (hb_subset_input_t *input,
|
||||
|
@ -577,7 +576,7 @@ hb_subset_input_set_axis_range (hb_subset_input_t *input,
|
|||
*
|
||||
* Return value: `true` if a range has been set for this axis tag, `false` otherwise.
|
||||
*
|
||||
* XSince: EXPERIMENTAL
|
||||
* XSince: REPLACEME
|
||||
**/
|
||||
HB_EXTERN hb_bool_t
|
||||
hb_subset_input_get_axis_range (hb_subset_input_t *input,
|
||||
|
@ -598,7 +597,6 @@ hb_subset_input_get_axis_range (hb_subset_input_t *input,
|
|||
return true;
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/**
|
||||
* hb_subset_preprocess:
|
||||
|
@ -746,5 +744,4 @@ hb_subset_input_override_name_table (hb_subset_input_t *input,
|
|||
input->name_table_overrides.set (hb_ot_name_record_ids_t (platform_id, encoding_id, language_id, name_id), name_bytes);
|
||||
return true;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
@ -1171,11 +1171,9 @@ _get_instance_glyphs_contour_points (hb_subset_plan_t *plan)
|
|||
if (unlikely (!plan->new_gid_contour_points_map.set (new_gid, all_points)))
|
||||
return false;
|
||||
|
||||
#ifdef HB_EXPERIMENTAL_API
|
||||
/* composite new gids are only needed by iup delta optimization */
|
||||
if ((plan->flags & HB_SUBSET_FLAGS_OPTIMIZE_IUP_DELTAS) && glyph.is_composite ())
|
||||
plan->composite_new_gids.add (new_gid);
|
||||
#endif
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -73,11 +73,11 @@ typedef struct hb_subset_plan_t hb_subset_plan_t;
|
|||
* OS/2 will not be recalculated.
|
||||
* @HB_SUBSET_FLAGS_NO_LAYOUT_CLOSURE: If set don't perform glyph closure on layout
|
||||
* substitution rules (GSUB). Since: 7.2.0.
|
||||
* @HB_SUBSET_FLAGS_OPTIMIZE_IUP_DELTAS: If set perform IUP delta optimization on the
|
||||
* remaining gvar table's deltas. XSince: REPLACEME
|
||||
* @HB_SUBSET_FLAGS_IFTB_REQUIREMENTS: If set enforce requirements on the output subset
|
||||
* to allow it to be used with incremental font transfer IFTB patches. Primarily,
|
||||
* this forces all outline data to use long (32 bit) offsets. Since: EXPERIMENTAL
|
||||
* @HB_SUBSET_FLAGS_OPTIMIZE_IUP_DELTAS: If set perform IUP delta optimization on the
|
||||
* remaining gvar table's deltas. Since: EXPERIMENTAL
|
||||
*
|
||||
* List of boolean properties that can be configured on the subset input.
|
||||
*
|
||||
|
@ -95,9 +95,9 @@ typedef enum { /*< flags >*/
|
|||
HB_SUBSET_FLAGS_GLYPH_NAMES = 0x00000080u,
|
||||
HB_SUBSET_FLAGS_NO_PRUNE_UNICODE_RANGES = 0x00000100u,
|
||||
HB_SUBSET_FLAGS_NO_LAYOUT_CLOSURE = 0x00000200u,
|
||||
HB_SUBSET_FLAGS_OPTIMIZE_IUP_DELTAS = 0x00000400u,
|
||||
#ifdef HB_EXPERIMENTAL_API
|
||||
HB_SUBSET_FLAGS_IFTB_REQUIREMENTS = 0x00000400u,
|
||||
HB_SUBSET_FLAGS_OPTIMIZE_IUP_DELTAS = 0x00000800u,
|
||||
HB_SUBSET_FLAGS_IFTB_REQUIREMENTS = 0x00000800u,
|
||||
#endif
|
||||
} hb_subset_flags_t;
|
||||
|
||||
|
@ -188,7 +188,6 @@ hb_subset_input_pin_axis_location (hb_subset_input_t *input,
|
|||
hb_tag_t axis_tag,
|
||||
float axis_value);
|
||||
|
||||
#ifdef HB_EXPERIMENTAL_API
|
||||
HB_EXTERN hb_bool_t
|
||||
hb_subset_input_get_axis_range (hb_subset_input_t *input,
|
||||
hb_tag_t axis_tag,
|
||||
|
@ -204,6 +203,7 @@ hb_subset_input_set_axis_range (hb_subset_input_t *input,
|
|||
float axis_max_value,
|
||||
float axis_def_value);
|
||||
|
||||
#ifdef HB_EXPERIMENTAL_API
|
||||
HB_EXTERN hb_bool_t
|
||||
hb_subset_input_override_name_table (hb_subset_input_t *input,
|
||||
hb_ot_name_id_t name_id,
|
||||
|
@ -212,7 +212,6 @@ hb_subset_input_override_name_table (hb_subset_input_t *input,
|
|||
unsigned language_id,
|
||||
const char *name_str,
|
||||
int str_len);
|
||||
|
||||
#endif
|
||||
|
||||
HB_EXTERN hb_face_t *
|
||||
|
|
|
@ -68,21 +68,21 @@ tests = [
|
|||
'instantiate_colrv1',
|
||||
'instantiate_cff2_update_metrics',
|
||||
'layout.empty_ligature_offset',
|
||||
'glyf_partial_instancing',
|
||||
'mvar_partial_instance',
|
||||
'update_def_wght',
|
||||
'empty_region_vardata',
|
||||
'feature_variations_partial_instance',
|
||||
'gdef_partial_instance',
|
||||
'value_format_partial_instance',
|
||||
'feature_variation_instance_collect_lookups',
|
||||
'sync_vmetrics',
|
||||
]
|
||||
|
||||
if get_option('experimental_api')
|
||||
tests += [
|
||||
'glyf_partial_instancing',
|
||||
'mvar_partial_instance',
|
||||
'update_def_wght',
|
||||
'empty_region_vardata',
|
||||
'feature_variations_partial_instance',
|
||||
'gdef_partial_instance',
|
||||
'value_format_partial_instance',
|
||||
'feature_variation_instance_collect_lookups',
|
||||
'iftb_requirements',
|
||||
'sync_vmetrics',
|
||||
]
|
||||
]
|
||||
endif
|
||||
|
||||
repack_tests = [
|
||||
|
|
|
@ -926,9 +926,6 @@ subset_main_t::add_options ()
|
|||
"(Partially|Fully) Instantiate a variable font. A location consists of the tag "
|
||||
"of a variation axis, followed by '=', followed by a number or the literal "
|
||||
"string 'drop'. For example: --variations=\"wdth=100 wght=200\" or --variations=\"wdth=drop\""
|
||||
#ifndef HB_EXPERIMENTAL_API
|
||||
"\n\nNote: currently only full instancing is supported unless this util has been compiled with experimental api enabled."
|
||||
#endif
|
||||
,
|
||||
"list of comma separated axis-locations."
|
||||
},
|
||||
|
@ -963,8 +960,8 @@ subset_main_t::add_options ()
|
|||
"If set preprocesses the face with the add accelerator option before actually subsetting.", nullptr},
|
||||
#ifdef HB_EXPERIMENTAL_API
|
||||
{"iftb-requirements", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, (gpointer) &set_flag<HB_SUBSET_FLAGS_IFTB_REQUIREMENTS>, "Enforce requirements needed to use the subset with incremental font transfer IFTB patches.", nullptr},
|
||||
{"optimize", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, (gpointer) &set_flag<HB_SUBSET_FLAGS_OPTIMIZE_IUP_DELTAS>, "Perform IUP delta optimization on the resulting gvar table's deltas", nullptr},
|
||||
#endif
|
||||
{"optimize", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, (gpointer) &set_flag<HB_SUBSET_FLAGS_OPTIMIZE_IUP_DELTAS>, "Perform IUP delta optimization on the resulting gvar table's deltas", nullptr},
|
||||
{nullptr}
|
||||
};
|
||||
add_group (flag_entries,
|
||||
|
|
|
@ -198,7 +198,6 @@ parse_instancing_spec (const char *arg,
|
|||
continue;
|
||||
}
|
||||
|
||||
#ifdef HB_EXPERIMENTAL_API
|
||||
if (!hb_subset_input_set_axis_range (input,
|
||||
face, axis_tag,
|
||||
min, max, def))
|
||||
|
@ -208,7 +207,6 @@ parse_instancing_spec (const char *arg,
|
|||
return false;
|
||||
}
|
||||
continue;
|
||||
#endif
|
||||
|
||||
g_set_error (error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE,
|
||||
"Partial instancing is not supported.");
|
||||
|
|
Loading…
Add table
Reference in a new issue