summaryrefslogtreecommitdiff
path: root/src/cff
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2022-06-21 17:08:04 +0200
committerWerner Lemberg <wl@gnu.org>2022-06-21 17:08:04 +0200
commit2848378be56ea26376e3aff68b1b4b8aa8f8611b (patch)
tree9affda9da5d1d695d86751641d3681fc499452c5 /src/cff
parent40c6f97326172066c136052e155fc9bb5839695a (diff)
downloadfreetype2-2848378be56ea26376e3aff68b1b4b8aa8f8611b.tar.gz
s/fixed point/fixed-point/
Diffstat (limited to 'src/cff')
-rw-r--r--src/cff/cffload.c6
-rw-r--r--src/cff/cffparse.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/cff/cffload.c b/src/cff/cffload.c
index d6f8a1013..02f023031 100644
--- a/src/cff/cffload.c
+++ b/src/cff/cffload.c
@@ -1288,7 +1288,7 @@
/* Blended values are written to a different buffer, */
/* using reserved operator 255. */
/* */
- /* Blend calculation is done in 16.16 fixed point. */
+ /* Blend calculation is done in 16.16 fixed-point. */
FT_LOCAL_DEF( FT_Error )
cff_blend_doBlend( CFF_SubFont subFont,
CFF_Parser parser,
@@ -1364,7 +1364,7 @@
FT_UInt32 sum;
- /* convert inputs to 16.16 fixed point */
+ /* convert inputs to 16.16 fixed-point */
sum = cff_parse_num( parser, &parser->stack[i + base] ) * 0x10000;
for ( j = 1; j < blend->lenBV; j++ )
@@ -1373,7 +1373,7 @@
/* point parser stack to new value on blend_stack */
parser->stack[i + base] = subFont->blend_top;
- /* Push blended result as Type 2 5-byte fixed point number. This */
+ /* Push blended result as Type 2 5-byte fixed-point number. This */
/* will not conflict with actual DICTs because 255 is a reserved */
/* opcode in both CFF and CFF2 DICTs. See `cff_parse_num' for */
/* decode of this, which rounds to an integer. */
diff --git a/src/cff/cffparse.c b/src/cff/cffparse.c
index 2536a2186..28be28bad 100644
--- a/src/cff/cffparse.c
+++ b/src/cff/cffparse.c
@@ -530,7 +530,7 @@
else if ( **d == 255 )
{
- /* 16.16 fixed point is used internally for CFF2 blend results. */
+ /* 16.16 fixed-point is used internally for CFF2 blend results. */
/* Since these are trusted values, a limit check is not needed. */
/* After the 255, 4 bytes give the number. */