mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 13:05:04 +00:00
[font] Fix var initialization
This commit is contained in:
parent
aad5780f53
commit
22f81f70cb
1 changed files with 8 additions and 8 deletions
|
@ -325,8 +325,8 @@ struct hb_font_t
|
|||
if (x_strength && !embolden_in_place)
|
||||
{
|
||||
/* Emboldening. */
|
||||
hb_position_t x_strength = x_scale >= 0 ? x_strength : -x_strength;
|
||||
advance += advance ? x_strength : 0;
|
||||
hb_position_t strength = x_scale >= 0 ? x_strength : -x_strength;
|
||||
advance += advance ? strength : 0;
|
||||
}
|
||||
|
||||
return advance;
|
||||
|
@ -341,8 +341,8 @@ struct hb_font_t
|
|||
if (y_strength && !embolden_in_place)
|
||||
{
|
||||
/* Emboldening. */
|
||||
hb_position_t y_strength = y_scale >= 0 ? y_strength : -y_strength;
|
||||
advance += advance ? y_strength : 0;
|
||||
hb_position_t strength = y_scale >= 0 ? y_strength : -y_strength;
|
||||
advance += advance ? strength : 0;
|
||||
}
|
||||
|
||||
return advance;
|
||||
|
@ -363,10 +363,10 @@ struct hb_font_t
|
|||
if (x_strength && !embolden_in_place)
|
||||
{
|
||||
/* Emboldening. */
|
||||
hb_position_t x_strength = x_scale >= 0 ? x_strength : -x_strength;
|
||||
hb_position_t strength = x_scale >= 0 ? x_strength : -x_strength;
|
||||
for (unsigned int i = 0; i < count; i++)
|
||||
{
|
||||
*first_advance += *first_advance ? x_strength : 0;
|
||||
*first_advance += *first_advance ? strength : 0;
|
||||
first_advance = &StructAtOffsetUnaligned<hb_position_t> (first_advance, advance_stride);
|
||||
}
|
||||
}
|
||||
|
@ -387,10 +387,10 @@ struct hb_font_t
|
|||
if (y_strength && !embolden_in_place)
|
||||
{
|
||||
/* Emboldening. */
|
||||
hb_position_t y_strength = y_scale >= 0 ? y_strength : -y_strength;
|
||||
hb_position_t strength = y_scale >= 0 ? y_strength : -y_strength;
|
||||
for (unsigned int i = 0; i < count; i++)
|
||||
{
|
||||
*first_advance += *first_advance ? y_strength : 0;
|
||||
*first_advance += *first_advance ? strength : 0;
|
||||
first_advance = &StructAtOffsetUnaligned<hb_position_t> (first_advance, advance_stride);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue