mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[MultiVarStore] Move code; no difference
This commit is contained in:
parent
564999d84c
commit
6a6d8f8531
1 changed files with 7 additions and 3 deletions
|
@ -3147,14 +3147,18 @@ struct MultiVarData
|
|||
float scalar = regions.evaluate (regionIndices.arrayZ[regionIndex],
|
||||
coords, coord_count,
|
||||
cache);
|
||||
if (scalar == 0)
|
||||
{
|
||||
values_iter += count;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (scalar == 1.f)
|
||||
for (unsigned i = 0; i < count; i++)
|
||||
out.arrayZ[i] += *values_iter++;
|
||||
else if (scalar)
|
||||
else
|
||||
for (unsigned i = 0; i < count; i++)
|
||||
out.arrayZ[i] += *values_iter++ * scalar;
|
||||
else
|
||||
values_iter += count;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue