mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 21:45:06 +00:00
[subset] Fix remaining double conversion warnings.
This commit is contained in:
parent
6253b3a905
commit
3f38ffd633
6 changed files with 24 additions and 20 deletions
|
@ -2641,7 +2641,7 @@ struct VarRegionList
|
|||
float max_val = axis_region->endCoord.to_float ();
|
||||
|
||||
if (def_val != 0.f)
|
||||
axis_tuples.set (*axis_tag, Triple (min_val, def_val, max_val));
|
||||
axis_tuples.set (*axis_tag, Triple ((double) min_val, (double) def_val, (double) max_val));
|
||||
axis_region++;
|
||||
}
|
||||
return !axis_tuples.in_error ();
|
||||
|
@ -3328,19 +3328,19 @@ struct ConditionFormat1
|
|||
return_trace (false);
|
||||
|
||||
const hb_hashmap_t<hb_tag_t, Triple>& normalized_axes_location = c->plan->axes_location;
|
||||
Triple axis_limit{-1.f, 0.f, 1.f};
|
||||
Triple axis_limit{-1.0, 0.0, 1.0};
|
||||
Triple *normalized_limit;
|
||||
if (normalized_axes_location.has (*axis_tag, &normalized_limit))
|
||||
axis_limit = *normalized_limit;
|
||||
|
||||
const hb_hashmap_t<hb_tag_t, TripleDistances>& axes_triple_distances = c->plan->axes_triple_distances;
|
||||
TripleDistances axis_triple_distances{1.f, 1.f};
|
||||
TripleDistances axis_triple_distances{1.0, 1.0};
|
||||
TripleDistances *triple_dists;
|
||||
if (axes_triple_distances.has (*axis_tag, &triple_dists))
|
||||
axis_triple_distances = *triple_dists;
|
||||
|
||||
float normalized_min = renormalizeValue (filterRangeMinValue.to_float (), axis_limit, axis_triple_distances, false);
|
||||
float normalized_max = renormalizeValue (filterRangeMaxValue.to_float (), axis_limit, axis_triple_distances, false);
|
||||
float normalized_min = renormalizeValue ((double) filterRangeMinValue.to_float (), axis_limit, axis_triple_distances, false);
|
||||
float normalized_max = renormalizeValue ((double) filterRangeMaxValue.to_float (), axis_limit, axis_triple_distances, false);
|
||||
out->filterRangeMinValue.set_float (normalized_min);
|
||||
out->filterRangeMaxValue.set_float (normalized_max);
|
||||
|
||||
|
@ -3358,7 +3358,7 @@ struct ConditionFormat1
|
|||
|
||||
hb_tag_t axis_tag = c->axes_index_tag_map->get (axisIndex);
|
||||
|
||||
Triple axis_range (-1.f, 0.f, 1.f);
|
||||
Triple axis_range (-1.0, 0.0, 1.0);
|
||||
Triple *axis_limit;
|
||||
bool axis_set_by_user = false;
|
||||
if (c->axes_location->has (axis_tag, &axis_limit))
|
||||
|
|
|
@ -80,7 +80,7 @@ struct AxisValueMap
|
|||
|
||||
bool is_outside_axis_range (const Triple& axis_range) const
|
||||
{
|
||||
float from_coord = coords[0].to_float ();
|
||||
double from_coord = (double) coords[0].to_float ();
|
||||
return !axis_range.contains (from_coord);
|
||||
}
|
||||
|
||||
|
@ -100,8 +100,8 @@ struct AxisValueMap
|
|||
float from_coord = coords[0].to_float ();
|
||||
float to_coord = coords[1].to_float ();
|
||||
|
||||
from_coord = renormalizeValue (from_coord, unmapped_range, triple_distances);
|
||||
to_coord = renormalizeValue (to_coord, axis_range, triple_distances);
|
||||
from_coord = renormalizeValue ((double) from_coord, unmapped_range, triple_distances);
|
||||
to_coord = renormalizeValue ((double) to_coord, axis_range, triple_distances);
|
||||
|
||||
coords[0].set_float (from_coord);
|
||||
coords[1].set_float (to_coord);
|
||||
|
@ -197,7 +197,7 @@ struct SegmentMaps : Array16Of<AxisValueMap>
|
|||
unmapped_val.set_int (unmap (val.to_int ()));
|
||||
float unmapped_max = unmapped_val.to_float ();
|
||||
|
||||
return Triple{unmapped_min, unmapped_middle, unmapped_max};
|
||||
return Triple{(double) unmapped_min, (double) unmapped_middle, (double) unmapped_max};
|
||||
}
|
||||
|
||||
bool subset (hb_subset_context_t *c, hb_tag_t axis_tag) const
|
||||
|
|
|
@ -299,7 +299,7 @@ struct TupleVariationHeader
|
|||
start = hb_min (peak, 0.f);
|
||||
end = hb_max (peak, 0.f);
|
||||
}
|
||||
axis_tuples.set (*axis_tag, Triple (start, peak, end));
|
||||
axis_tuples.set (*axis_tag, Triple ((double) start, (double) peak, (double) end));
|
||||
}
|
||||
|
||||
return true;
|
||||
|
@ -1000,9 +1000,13 @@ struct tuple_delta_t
|
|||
{
|
||||
i = next_index (i, start_point, end_point);
|
||||
if (i == next) break;
|
||||
deltas_x.arrayZ[i] = infer_delta (orig_points.arrayZ[i].x, orig_points.arrayZ[prev].x, orig_points.arrayZ[next].x,
|
||||
deltas_x.arrayZ[i] = infer_delta ((double) orig_points.arrayZ[i].x,
|
||||
(double) orig_points.arrayZ[prev].x,
|
||||
(double) orig_points.arrayZ[next].x,
|
||||
deltas_x.arrayZ[prev], deltas_x.arrayZ[next]);
|
||||
deltas_y.arrayZ[i] = infer_delta (orig_points.arrayZ[i].y, orig_points.arrayZ[prev].y, orig_points.arrayZ[next].y,
|
||||
deltas_y.arrayZ[i] = infer_delta ((double) orig_points.arrayZ[i].y,
|
||||
(double) orig_points.arrayZ[prev].y,
|
||||
(double) orig_points.arrayZ[next].y,
|
||||
deltas_y.arrayZ[prev], deltas_y.arrayZ[next]);
|
||||
inferred_idxes.add (i);
|
||||
if (--unref_count == 0) goto no_more_gaps;
|
||||
|
|
|
@ -446,7 +446,7 @@ hb_subset_input_pin_all_axes_to_default (hb_subset_input_t *input,
|
|||
for (unsigned i = 0; i < axis_count; i++)
|
||||
{
|
||||
hb_tag_t axis_tag = axis_infos[i].tag;
|
||||
float default_val = axis_infos[i].default_value;
|
||||
double default_val = (double) axis_infos[i].default_value;
|
||||
if (!input->axes_location.set (axis_tag, Triple (default_val, default_val, default_val)))
|
||||
{
|
||||
hb_free (axis_infos);
|
||||
|
@ -481,7 +481,7 @@ hb_subset_input_pin_axis_to_default (hb_subset_input_t *input,
|
|||
if (!hb_ot_var_find_axis_info (face, axis_tag, &axis_info))
|
||||
return false;
|
||||
|
||||
float default_val = axis_info.default_value;
|
||||
double default_val = (double) axis_info.default_value;
|
||||
return input->axes_location.set (axis_tag, Triple (default_val, default_val, default_val));
|
||||
}
|
||||
|
||||
|
@ -511,7 +511,7 @@ hb_subset_input_pin_axis_location (hb_subset_input_t *input,
|
|||
if (!hb_ot_var_find_axis_info (face, axis_tag, &axis_info))
|
||||
return false;
|
||||
|
||||
float val = hb_clamp(axis_value, axis_info.min_value, axis_info.max_value);
|
||||
double val = hb_clamp((double) axis_value, (double) axis_info.min_value, (double) axis_info.max_value);
|
||||
return input->axes_location.set (axis_tag, Triple (val, val, val));
|
||||
}
|
||||
|
||||
|
@ -561,7 +561,7 @@ hb_subset_input_set_axis_range (hb_subset_input_t *input,
|
|||
float new_min_val = hb_clamp(min, axis_info.min_value, axis_info.max_value);
|
||||
float new_max_val = hb_clamp(max, axis_info.min_value, axis_info.max_value);
|
||||
float new_default_val = hb_clamp(def, new_min_val, new_max_val);
|
||||
return input->axes_location.set (axis_tag, Triple (new_min_val, new_default_val, new_max_val));
|
||||
return input->axes_location.set (axis_tag, Triple ((double) new_min_val, (double) new_default_val, (double) new_max_val));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
/* pre-normalized distances */
|
||||
struct TripleDistances
|
||||
{
|
||||
TripleDistances (): negative (1.f), positive (1.f) {}
|
||||
TripleDistances (): negative (1.0), positive (1.0) {}
|
||||
TripleDistances (double neg_, double pos_): negative (neg_), positive (pos_) {}
|
||||
TripleDistances (double min, double default_, double max)
|
||||
{
|
||||
|
|
|
@ -47,10 +47,10 @@ test_item_variations ()
|
|||
|
||||
/* partial instancing wght=300:800 */
|
||||
hb_hashmap_t<hb_tag_t, Triple> normalized_axes_location;
|
||||
normalized_axes_location.set (axis_tag, Triple (-0.512817f, 0.f, 0.700012f));
|
||||
normalized_axes_location.set (axis_tag, Triple (-0.512817, 0.0, 0.7000120));
|
||||
|
||||
hb_hashmap_t<hb_tag_t, TripleDistances> axes_triple_distances;
|
||||
axes_triple_distances.set (axis_tag, TripleDistances (200.f, 500.f));
|
||||
axes_triple_distances.set (axis_tag, TripleDistances (200.0, 500.0));
|
||||
|
||||
result = item_vars.instantiate_tuple_vars (normalized_axes_location, axes_triple_distances);
|
||||
assert (result);
|
||||
|
|
Loading…
Add table
Reference in a new issue