[ttgxvar] Replace tabs with spaces

Also clarify comments around conversion and clamping.

* src/truetype/ttgxvar.c (ft_var_to_normalized): doit
This commit is contained in:
Ben Wagner 2024-05-29 17:01:29 -04:00
parent 7ff43d3e9f
commit d41a855aab
1 changed files with 5 additions and 5 deletions

View File

@ -2129,12 +2129,12 @@
outerIndex,
innerIndex );
/* Convert to 16.16 format before adding. */
v += MUL_INT( delta, 4 );
/* Convert delta in F2DOT14 to 16.16 before adding. */
v += MUL_INT( delta, 4 );
/* Clamp value range. */
v = v >= 0x10000L ? 0x10000 : v;
v = v <= -0x10000L ? -0x10000 : v;
/* Clamp value range [-1, 1]. */
v = v >= 0x10000L ? 0x10000 : v;
v = v <= -0x10000L ? -0x10000 : v;
new_normalized[i] = v;
}