4 * Copyright (C) 2011-2012 by Werner Lemberg.
6 * This file is part of the ttfautohint library, and may only be used,
7 * modified, and distributed under the terms given in `COPYING'. By
8 * continuing to use, modify, or distribute this file you indicate that you
9 * have read `COPYING' and understand and accept it fully.
11 * The file `COPYING' mentioned in the previous paragraph is distributed
12 * with the ttfautohint library.
16 /* originally file `afhints.c' (2011-Mar-28) from FreeType */
18 /* heavily modified 2011 by Werner Lemberg <wl@gnu.org> */
25 /* get new segment for given axis */
28 ta_axis_hints_new_segment(TA_AxisHints axis
,
31 FT_Error error
= FT_Err_Ok
;
32 TA_Segment segment
= NULL
;
35 if (axis
->num_segments
>= axis
->max_segments
)
37 TA_Segment segments_new
;
39 FT_Int old_max
= axis
->max_segments
;
40 FT_Int new_max
= old_max
;
41 FT_Int big_max
= (FT_Int
)(FT_INT_MAX
/ sizeof (*segment
));
44 if (old_max
>= big_max
)
46 error
= FT_Err_Out_Of_Memory
;
50 new_max
+= (new_max
>> 2) + 4;
55 segments_new
= (TA_Segment
)realloc(axis
->segments
,
56 new_max
* sizeof (TA_SegmentRec
));
58 return FT_Err_Out_Of_Memory
;
60 axis
->segments
= segments_new
;
61 axis
->max_segments
= new_max
;
64 segment
= axis
->segments
+ axis
->num_segments
++;
72 /* get new edge for given axis, direction, and position */
75 ta_axis_hints_new_edge(TA_AxisHints axis
,
80 FT_Error error
= FT_Err_Ok
;
85 if (axis
->num_edges
>= axis
->max_edges
)
89 FT_Int old_max
= axis
->max_edges
;
90 FT_Int new_max
= old_max
;
91 FT_Int big_max
= (FT_Int
)(FT_INT_MAX
/ sizeof (*edge
));
94 if (old_max
>= big_max
)
96 error
= FT_Err_Out_Of_Memory
;
100 new_max
+= (new_max
>> 2) + 4;
101 if (new_max
< old_max
102 || new_max
> big_max
)
105 edges_new
= (TA_Edge
)realloc(axis
->edges
,
106 new_max
* sizeof (TA_EdgeRec
));
108 return FT_Err_Out_Of_Memory
;
110 axis
->edges
= edges_new
;
111 axis
->max_edges
= new_max
;
115 edge
= edges
+ axis
->num_edges
;
119 if (edge
[-1].fpos
< fpos
)
122 /* we want the edge with same position and minor direction */
123 /* to appear before those in the major one in the list */
124 if (edge
[-1].fpos
== fpos
125 && dir
== axis
->major_dir
)
134 memset(edge
, 0, sizeof (TA_EdgeRec
));
135 edge
->fpos
= (FT_Short
)fpos
;
136 edge
->dir
= (FT_Char
)dir
;
152 _ta_message(const char* format
,
158 va_start(ap
, format
);
159 vfprintf(stderr
, format
, ap
);
165 ta_dir_str(TA_Direction dir
)
192 #define TA_INDEX_NUM(ptr, base) \
193 ((ptr) ? ((ptr) - (base)) \
198 ta_glyph_hints_dump_points(TA_GlyphHints hints
)
200 TA_Point points
= hints
->points
;
201 TA_Point limit
= points
+ hints
->num_points
;
205 TA_LOG(("Table of points:\n"
206 " [ index | xorg | yorg | xscale | yscale"
207 " | xfit | yfit | flags ]\n"));
209 for (point
= points
; point
< limit
; point
++)
210 TA_LOG((" [ %5d | %5d | %5d | %6.2f | %6.2f"
211 " | %5.2f | %5.2f | %c%c%c%c%c%c ]\n",
219 (point
->flags
& TA_FLAG_WEAK_INTERPOLATION
) ? 'w' : ' ',
220 (point
->flags
& TA_FLAG_INFLECTION
) ? 'i' : ' ',
221 (point
->flags
& TA_FLAG_EXTREMA_X
) ? '<' : ' ',
222 (point
->flags
& TA_FLAG_EXTREMA_Y
) ? 'v' : ' ',
223 (point
->flags
& TA_FLAG_ROUND_X
) ? '(' : ' ',
224 (point
->flags
& TA_FLAG_ROUND_Y
) ? 'u' : ' '));
230 ta_edge_flags_to_string(FT_Byte flags
)
232 static char temp
[32];
236 if (flags
& TA_EDGE_ROUND
)
238 memcpy(temp
+ pos
, "round", 5);
241 if (flags
& TA_EDGE_SERIF
)
245 memcpy(temp
+ pos
, "serif", 5);
257 /* dump the array of linked segments */
260 ta_glyph_hints_dump_segments(TA_GlyphHints hints
)
265 for (dimension
= TA_DEBUG_STARTDIM
;
266 dimension
>= TA_DEBUG_ENDDIM
;
269 TA_AxisHints axis
= &hints
->axis
[dimension
];
270 TA_Point points
= hints
->points
;
271 TA_Edge edges
= axis
->edges
;
272 TA_Segment segments
= axis
->segments
;
273 TA_Segment limit
= segments
+ axis
->num_segments
;
277 TA_LOG(("Table of %s segments:\n",
278 dimension
== TA_DIMENSION_HORZ
? "vertical"
280 if (axis
->num_segments
)
281 TA_LOG((" [ index | pos | dir | from"
282 " | to | link | serif | edge"
283 " | height | extra | flags ]\n"));
285 TA_LOG((" (none)\n"));
287 for (seg
= segments
; seg
< limit
; seg
++)
288 TA_LOG((" [ %5d | %5.2g | %5s | %4d"
289 " | %4d | %4d | %5d | %4d"
290 " | %6d | %5d | %11s ]\n",
292 dimension
== TA_DIMENSION_HORZ
? (int)seg
->first
->ox
/ 64.0
293 : (int)seg
->first
->oy
/ 64.0,
294 ta_dir_str((TA_Direction
)seg
->dir
),
295 TA_INDEX_NUM(seg
->first
, points
),
296 TA_INDEX_NUM(seg
->last
, points
),
297 TA_INDEX_NUM(seg
->link
, segments
),
298 TA_INDEX_NUM(seg
->serif
, segments
),
299 TA_INDEX_NUM(seg
->edge
, edges
),
301 seg
->height
- (seg
->max_coord
- seg
->min_coord
),
302 ta_edge_flags_to_string(seg
->flags
)));
308 /* dump the array of linked edges */
311 ta_glyph_hints_dump_edges(TA_GlyphHints hints
)
316 for (dimension
= TA_DEBUG_STARTDIM
;
317 dimension
>= TA_DEBUG_ENDDIM
;
320 TA_AxisHints axis
= &hints
->axis
[dimension
];
321 TA_Edge edges
= axis
->edges
;
322 TA_Edge limit
= edges
+ axis
->num_edges
;
326 /* note that TA_DIMENSION_HORZ corresponds to _vertical_ edges */
327 /* since they have a constant X coordinate */
328 TA_LOG(("Table of %s edges:\n",
329 dimension
== TA_DIMENSION_HORZ
? "vertical"
332 TA_LOG((" [ index | pos | dir | link"
333 " | serif | blue | opos | pos | flags ]\n"));
335 TA_LOG((" (none)\n"));
337 for (edge
= edges
; edge
< limit
; edge
++)
338 TA_LOG((" [ %5d | %5.2g | %5s | %4d"
339 " | %5d | %c | %5.2f | %5.2f | %11s ]\n",
341 (int)edge
->opos
/ 64.0,
342 ta_dir_str((TA_Direction
)edge
->dir
),
343 TA_INDEX_NUM(edge
->link
, edges
),
344 TA_INDEX_NUM(edge
->serif
, edges
),
345 edge
->blue_edge
? 'y' : 'n',
348 ta_edge_flags_to_string(edge
->flags
)));
353 #endif /* TA_DEBUG */
356 /* compute the direction value of a given vector */
359 ta_direction_compute(FT_Pos dx
,
362 FT_Pos ll
, ss
; /* long and short arm lengths */
363 TA_Direction dir
; /* candidate direction */
397 /* return no direction if arm lengths differ too much */
398 /* (value 14 is heuristic, corresponding to approx. 4.1 degrees) */
400 if (TA_ABS(ll
) <= TA_ABS(ss
))
408 ta_glyph_hints_init(TA_GlyphHints hints
)
410 memset(hints
, 0, sizeof (TA_GlyphHintsRec
));
415 ta_glyph_hints_done(TA_GlyphHints hints
)
423 /* we don't need to free the segment and edge buffers */
424 /* since they are really within the hints->points array */
425 for (dim
= 0; dim
< TA_DIMENSION_MAX
; dim
++)
427 TA_AxisHints axis
= &hints
->axis
[dim
];
430 axis
->num_segments
= 0;
431 axis
->max_segments
= 0;
432 free(axis
->segments
);
433 axis
->segments
= NULL
;
441 free(hints
->contours
);
442 hints
->contours
= NULL
;
443 hints
->max_contours
= 0;
444 hints
->num_contours
= 0;
447 hints
->points
= NULL
;
448 hints
->num_points
= 0;
449 hints
->max_points
= 0;
456 ta_glyph_hints_rescale(TA_GlyphHints hints
,
457 TA_ScriptMetrics metrics
)
459 hints
->metrics
= metrics
;
460 hints
->scaler_flags
= metrics
->scaler
.flags
;
464 /* from FreeType's ftcalc.c */
467 ta_corner_is_flat(FT_Pos in_x
,
475 FT_Pos d_in
, d_out
, d_corner
;
500 return (d_in
+ d_out
- d_corner
) < (d_corner
>> 4);
504 /* recompute all TA_Point in TA_GlyphHints */
505 /* from the definitions in a source outline */
508 ta_glyph_hints_reload(TA_GlyphHints hints
,
511 FT_Error error
= FT_Err_Ok
;
513 FT_UInt old_max
, new_max
;
515 FT_Fixed x_scale
= hints
->x_scale
;
516 FT_Fixed y_scale
= hints
->y_scale
;
517 FT_Pos x_delta
= hints
->x_delta
;
518 FT_Pos y_delta
= hints
->y_delta
;
521 hints
->num_points
= 0;
522 hints
->num_contours
= 0;
524 hints
->axis
[0].num_segments
= 0;
525 hints
->axis
[0].num_edges
= 0;
526 hints
->axis
[1].num_segments
= 0;
527 hints
->axis
[1].num_edges
= 0;
529 /* first of all, reallocate the contours array if necessary */
530 new_max
= (FT_UInt
)outline
->n_contours
;
531 old_max
= hints
->max_contours
;
532 if (new_max
> old_max
)
534 TA_Point
* contours_new
;
537 new_max
= (new_max
+ 3) & ~3; /* round up to a multiple of 4 */
539 contours_new
= (TA_Point
*)realloc(hints
->contours
,
540 new_max
* sizeof (TA_Point
));
542 return FT_Err_Out_Of_Memory
;
544 hints
->contours
= contours_new
;
545 hints
->max_contours
= new_max
;
548 /* reallocate the points arrays if necessary -- we reserve */
549 /* two additional point positions, used to hint metrics appropriately */
550 new_max
= (FT_UInt
)(outline
->n_points
+ 2);
551 old_max
= hints
->max_points
;
552 if (new_max
> old_max
)
557 new_max
= (new_max
+ 2 + 7) & ~7; /* round up to a multiple of 8 */
559 points_new
= (TA_Point
)realloc(hints
->points
,
560 new_max
* sizeof (TA_PointRec
));
562 return FT_Err_Out_Of_Memory
;
564 hints
->points
= points_new
;
565 hints
->max_points
= new_max
;
568 hints
->num_points
= outline
->n_points
;
569 hints
->num_contours
= outline
->n_contours
;
571 /* we can't rely on the value of `FT_Outline.flags' to know the fill */
572 /* direction used for a glyph, given that some fonts are broken */
573 /* (e.g. the Arphic ones); we thus recompute it each time we need to */
575 hints
->axis
[TA_DIMENSION_HORZ
].major_dir
= TA_DIR_UP
;
576 hints
->axis
[TA_DIMENSION_VERT
].major_dir
= TA_DIR_LEFT
;
578 if (FT_Outline_Get_Orientation(outline
) == FT_ORIENTATION_POSTSCRIPT
)
580 hints
->axis
[TA_DIMENSION_HORZ
].major_dir
= TA_DIR_DOWN
;
581 hints
->axis
[TA_DIMENSION_VERT
].major_dir
= TA_DIR_RIGHT
;
584 hints
->x_scale
= x_scale
;
585 hints
->y_scale
= y_scale
;
586 hints
->x_delta
= x_delta
;
587 hints
->y_delta
= y_delta
;
589 hints
->xmin_delta
= 0;
590 hints
->xmax_delta
= 0;
592 points
= hints
->points
;
593 if (hints
->num_points
== 0)
598 TA_Point point_limit
= points
+ hints
->num_points
;
601 /* compute coordinates & Bezier flags, next and prev */
603 FT_Vector
* vec
= outline
->points
;
604 char* tag
= outline
->tags
;
606 TA_Point end
= points
+ outline
->contours
[0];
609 FT_Int contour_index
= 0;
612 for (point
= points
; point
< point_limit
; point
++, vec
++, tag
++)
614 point
->fx
= (FT_Short
)vec
->x
;
615 point
->fy
= (FT_Short
)vec
->y
;
616 point
->ox
= point
->x
= FT_MulFix(vec
->x
, x_scale
) + x_delta
;
617 point
->oy
= point
->y
= FT_MulFix(vec
->y
, y_scale
) + y_delta
;
619 switch (FT_CURVE_TAG(*tag
))
621 case FT_CURVE_TAG_CONIC
:
622 point
->flags
= TA_FLAG_CONIC
;
624 case FT_CURVE_TAG_CUBIC
:
625 point
->flags
= TA_FLAG_CUBIC
;
628 point
->flags
= TA_FLAG_NONE
;
637 if (++contour_index
< outline
->n_contours
)
639 end
= points
+ outline
->contours
[contour_index
];
646 /* set up the contours array */
648 TA_Point
* contour
= hints
->contours
;
649 TA_Point
* contour_limit
= contour
+ hints
->num_contours
;
651 short* end
= outline
->contours
;
655 for (; contour
< contour_limit
; contour
++, end
++)
657 contour
[0] = points
+ idx
;
658 idx
= (short)(end
[0] + 1);
662 /* compute directions of in & out vectors */
664 TA_Point first
= points
;
665 TA_Point prev
= NULL
;
670 TA_Direction in_dir
= TA_DIR_NONE
;
673 for (point
= points
; point
< point_limit
; point
++)
682 in_x
= first
->fx
- prev
->fx
;
683 in_y
= first
->fy
- prev
->fy
;
684 in_dir
= ta_direction_compute(in_x
, in_y
);
688 point
->in_dir
= (FT_Char
)in_dir
;
691 out_x
= next
->fx
- point
->fx
;
692 out_y
= next
->fy
- point
->fy
;
694 in_dir
= ta_direction_compute(out_x
, out_y
);
695 point
->out_dir
= (FT_Char
)in_dir
;
697 /* check for weak points */
699 if (point
->flags
& TA_FLAG_CONTROL
)
702 point
->flags
|= TA_FLAG_WEAK_INTERPOLATION
;
704 else if (point
->out_dir
== point
->in_dir
)
706 if (point
->out_dir
!= TA_DIR_NONE
)
709 if (ta_corner_is_flat(in_x
, in_y
, out_x
, out_y
))
712 else if (point
->in_dir
== -point
->out_dir
)
727 /* store the hinted outline in an FT_Outline structure */
730 ta_glyph_hints_save(TA_GlyphHints hints
,
733 TA_Point point
= hints
->points
;
734 TA_Point limit
= point
+ hints
->num_points
;
736 FT_Vector
* vec
= outline
->points
;
737 char* tag
= outline
->tags
;
740 for (; point
< limit
; point
++, vec
++, tag
++)
745 if (point
->flags
& TA_FLAG_CONIC
)
746 tag
[0] = FT_CURVE_TAG_CONIC
;
747 else if (point
->flags
& TA_FLAG_CUBIC
)
748 tag
[0] = FT_CURVE_TAG_CUBIC
;
750 tag
[0] = FT_CURVE_TAG_ON
;
755 /****************************************************************
757 * EDGE POINT GRID-FITTING
759 ****************************************************************/
762 /* align all points of an edge to the same coordinate value, */
763 /* either horizontally or vertically */
766 ta_glyph_hints_align_edge_points(TA_GlyphHints hints
,
769 TA_AxisHints axis
= &hints
->axis
[dim
];
770 TA_Segment segments
= axis
->segments
;
771 TA_Segment segment_limit
= segments
+ axis
->num_segments
;
775 if (dim
== TA_DIMENSION_HORZ
)
777 for (seg
= segments
; seg
< segment_limit
; seg
++)
779 TA_Edge edge
= seg
->edge
;
780 TA_Point point
, first
, last
;
791 point
->x
= edge
->pos
;
792 point
->flags
|= TA_FLAG_TOUCH_X
;
803 for (seg
= segments
; seg
< segment_limit
; seg
++)
805 TA_Edge edge
= seg
->edge
;
806 TA_Point point
, first
, last
;
817 point
->y
= edge
->pos
;
818 point
->flags
|= TA_FLAG_TOUCH_Y
;
830 /****************************************************************
832 * STRONG POINT INTERPOLATION
834 ****************************************************************/
837 /* hint the strong points -- */
838 /* this is equivalent to the TrueType `IP' hinting instruction */
841 ta_glyph_hints_align_strong_points(TA_GlyphHints hints
,
844 TA_Point points
= hints
->points
;
845 TA_Point point_limit
= points
+ hints
->num_points
;
847 TA_AxisHints axis
= &hints
->axis
[dim
];
849 TA_Edge edges
= axis
->edges
;
850 TA_Edge edge_limit
= edges
+ axis
->num_edges
;
852 FT_UShort touch_flag
;
855 if (dim
== TA_DIMENSION_HORZ
)
856 touch_flag
= TA_FLAG_TOUCH_X
;
858 touch_flag
= TA_FLAG_TOUCH_Y
;
860 if (edges
< edge_limit
)
866 for (point
= points
; point
< point_limit
; point
++)
868 FT_Pos u
, ou
, fu
; /* point position */
872 if (point
->flags
& touch_flag
)
875 /* if this point is candidate to weak interpolation, we */
876 /* interpolate it after all strong points have been processed */
878 if ((point
->flags
& TA_FLAG_WEAK_INTERPOLATION
)
879 && !(point
->flags
& TA_FLAG_INFLECTION
))
882 if (dim
== TA_DIMENSION_VERT
)
895 /* is the point before the first edge? */
897 delta
= edge
->fpos
- u
;
900 u
= edge
->pos
- (edge
->opos
- ou
);
903 hints
->recorder(ta_ip_before
, hints
, dim
,
904 point
, NULL
, NULL
, NULL
, NULL
);
909 /* is the point after the last edge? */
910 edge
= edge_limit
- 1;
911 delta
= u
- edge
->fpos
;
914 u
= edge
->pos
+ (ou
- edge
->opos
);
917 hints
->recorder(ta_ip_after
, hints
, dim
,
918 point
, NULL
, NULL
, NULL
, NULL
);
924 FT_PtrDist min
, max
, mid
;
928 /* find enclosing edges */
930 max
= edge_limit
- edges
;
932 /* for a small number of edges, a linear search is better */
938 for (nn
= 0; nn
< max
; nn
++)
939 if (edges
[nn
].fpos
>= u
)
942 if (edges
[nn
].fpos
== u
)
947 hints
->recorder(ta_ip_on
, hints
, dim
,
948 point
, &edges
[nn
], NULL
, NULL
, NULL
);
957 mid
= (max
+ min
) >> 1;
967 /* we are on the edge */
971 hints
->recorder(ta_ip_on
, hints
, dim
,
972 point
, edge
, NULL
, NULL
, NULL
);
978 /* point is not on an edge */
980 TA_Edge before
= edges
+ min
- 1;
981 TA_Edge after
= edges
+ min
+ 0;
984 /* assert(before && after && before != after) */
985 if (before
->scale
== 0)
986 before
->scale
= FT_DivFix(after
->pos
- before
->pos
,
987 after
->fpos
- before
->fpos
);
989 u
= before
->pos
+ FT_MulFix(fu
- before
->fpos
,
993 hints
->recorder(ta_ip_between
, hints
, dim
,
994 point
, before
, after
, NULL
, NULL
);
999 /* save the point position */
1000 if (dim
== TA_DIMENSION_HORZ
)
1005 point
->flags
|= touch_flag
;
1011 /****************************************************************
1013 * WEAK POINT INTERPOLATION
1015 ****************************************************************/
1018 /* shift the original coordinates of all points between `p1' and */
1019 /* `p2' to get hinted coordinates, using the same difference as */
1020 /* given by `ref' */
1023 ta_iup_shift(TA_Point p1
,
1028 FT_Pos delta
= ref
->u
- ref
->v
;
1034 for (p
= p1
; p
< ref
; p
++)
1035 p
->u
= p
->v
+ delta
;
1037 for (p
= ref
+ 1; p
<= p2
; p
++)
1038 p
->u
= p
->v
+ delta
;
1042 /* interpolate the original coordinates of all points between `p1' and */
1043 /* `p2' to get hinted coordinates, using `ref1' and `ref2' as the */
1044 /* reference points; the `u' and `v' members are the current and */
1045 /* original coordinate values, respectively. */
1047 /* details can be found in the TrueType bytecode specification */
1050 ta_iup_interp(TA_Point p1
,
1057 FT_Pos v1
= ref1
->v
;
1058 FT_Pos v2
= ref2
->v
;
1059 FT_Pos d1
= ref1
->u
- v1
;
1060 FT_Pos d2
= ref2
->u
- v2
;
1068 for (p
= p1
; p
<= p2
; p
++)
1084 for (p
= p1
; p
<= p2
; p
++)
1093 u
= ref1
->u
+ FT_MulDiv(u
- v1
, ref2
->u
- ref1
->u
, v2
- v1
);
1100 for (p
= p1
; p
<= p2
; p
++)
1109 u
= ref1
->u
+ FT_MulDiv(u
- v1
, ref2
->u
- ref1
->u
, v2
- v1
);
1117 /* hint the weak points -- */
1118 /* this is equivalent to the TrueType `IUP' hinting instruction */
1121 ta_glyph_hints_align_weak_points(TA_GlyphHints hints
,
1124 TA_Point points
= hints
->points
;
1125 TA_Point point_limit
= points
+ hints
->num_points
;
1127 TA_Point
* contour
= hints
->contours
;
1128 TA_Point
* contour_limit
= contour
+ hints
->num_contours
;
1130 FT_UShort touch_flag
;
1133 TA_Point first_point
;
1136 /* pass 1: move segment points to edge positions */
1138 if (dim
== TA_DIMENSION_HORZ
)
1140 touch_flag
= TA_FLAG_TOUCH_X
;
1142 for (point
= points
; point
< point_limit
; point
++)
1144 point
->u
= point
->x
;
1145 point
->v
= point
->ox
;
1150 touch_flag
= TA_FLAG_TOUCH_Y
;
1152 for (point
= points
; point
< point_limit
; point
++)
1154 point
->u
= point
->y
;
1155 point
->v
= point
->oy
;
1161 for (; contour
< contour_limit
; contour
++)
1163 TA_Point first_touched
, last_touched
;
1167 end_point
= point
->prev
;
1168 first_point
= point
;
1170 /* find first touched point */
1173 if (point
> end_point
) /* no touched point in contour */
1176 if (point
->flags
& touch_flag
)
1182 first_touched
= point
;
1183 last_touched
= point
;
1187 /* skip any touched neighbours */
1188 while (point
< end_point
1189 && (point
[1].flags
& touch_flag
) != 0)
1192 last_touched
= point
;
1194 /* find the next touched point, if any */
1198 if (point
> end_point
)
1201 if ((point
->flags
& touch_flag
) != 0)
1207 /* interpolate between last_touched and point */
1208 ta_iup_interp(last_touched
+ 1, point
- 1,
1209 last_touched
, point
);
1213 /* special case: only one point was touched */
1214 if (last_touched
== first_touched
)
1215 ta_iup_shift(first_point
, end_point
, first_touched
);
1217 else /* interpolate the last part */
1219 if (last_touched
< end_point
)
1220 ta_iup_interp(last_touched
+ 1, end_point
,
1221 last_touched
, first_touched
);
1223 if (first_touched
> points
)
1224 ta_iup_interp(first_point
, first_touched
- 1,
1225 last_touched
, first_touched
);
1232 /* now save the interpolated values back to x/y */
1233 if (dim
== TA_DIMENSION_HORZ
)
1235 for (point
= points
; point
< point_limit
; point
++)
1236 point
->x
= point
->u
;
1240 for (point
= points
; point
< point_limit
; point
++)
1241 point
->y
= point
->u
;
1246 #ifdef TA_CONFIG_OPTION_USE_WARPER
1248 /* apply (small) warp scale and warp delta for given dimension */
1251 ta_glyph_hints_scale_dim(TA_GlyphHints hints
,
1256 TA_Point points
= hints
->points
;
1257 TA_Point points_limit
= points
+ hints
->num_points
;
1261 if (dim
== TA_DIMENSION_HORZ
)
1263 for (point
= points
; point
< points_limit
; point
++)
1264 point
->x
= FT_MulFix(point
->fx
, scale
) + delta
;
1268 for (point
= points
; point
< points_limit
; point
++)
1269 point
->y
= FT_MulFix(point
->fy
, scale
) + delta
;
1273 #endif /* TA_CONFIG_OPTION_USE_WARPER */
1275 /* end of tahints.c */