mirror of
git://git.savannah.gnu.org/freetype/freetype2.git
synced 2025-04-11 22:56:50 +02:00
[fixup] Use correct start values for min/max loops.
This commit is contained in:
parent
ee0c032eae
commit
fe62af515b
@ -2781,8 +2781,8 @@
|
||||
{
|
||||
FT_Int highest_contour = -1;
|
||||
|
||||
FT_Pos highest_min_y = 0;
|
||||
FT_Pos current_min_y = 0;
|
||||
FT_Pos highest_min_y = 32000;
|
||||
FT_Pos current_min_y = 32000;
|
||||
|
||||
FT_Int contour;
|
||||
|
||||
@ -3173,8 +3173,8 @@
|
||||
hints->num_contours >= 2 )
|
||||
{
|
||||
FT_Int highest_contour = -1;
|
||||
FT_Pos highest_min_y = 0;
|
||||
FT_Pos current_min_y = 0;
|
||||
FT_Pos highest_min_y = 32000;
|
||||
FT_Pos current_min_y = 32000;
|
||||
|
||||
FT_Pos highest_max_y;
|
||||
|
||||
@ -3318,8 +3318,8 @@
|
||||
hints->num_contours >= 2 )
|
||||
{
|
||||
FT_Int lowest_contour = -1;
|
||||
FT_Pos lowest_max_y = 0;
|
||||
FT_Pos current_max_y = 0;
|
||||
FT_Pos lowest_max_y = -32000;
|
||||
FT_Pos current_max_y = -32000;
|
||||
|
||||
FT_Int contour;
|
||||
FT_Pos adjustment_amount = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user