mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-05-09 05:08:03 +02:00
Fixed compilation bug for standalone mode.
This commit is contained in:
parent
f6356ab713
commit
9ab7c3c37e
1 changed files with 7 additions and 7 deletions
|
|
@ -2258,7 +2258,7 @@
|
|||
FT_Vector v_start;
|
||||
|
||||
FT_Vector* point;
|
||||
PByte flags;
|
||||
char* flags;
|
||||
|
||||
int n; /* index of contour in outline */
|
||||
int first; /* index of first point in contour */
|
||||
|
|
@ -3112,8 +3112,8 @@
|
|||
#ifdef FT_RASTER_OPTION_CONTRAST
|
||||
if ( x2-x1 < PRECISION )
|
||||
{
|
||||
x1 = ((x1+x2) >> 1) - PRECISION_HALF;
|
||||
x2 = x1 + PRECISION;
|
||||
x1 = ((x1+x2) >> 1) - PRECISION_HALF;
|
||||
x2 = x1 + PRECISION;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
@ -3326,10 +3326,10 @@
|
|||
|
||||
#ifdef FT_RASTER_OPTION_CONTRAST
|
||||
if (x2-x1 < PRECISION)
|
||||
{
|
||||
x1 = ((x1+x2) >> 1) - PRECISION_HALF;
|
||||
x2 = x1 + PRECISION;
|
||||
}
|
||||
{
|
||||
x1 = ((x1+x2) >> 1) - PRECISION_HALF;
|
||||
x2 = x1 + PRECISION;
|
||||
}
|
||||
#endif
|
||||
|
||||
e1 = TRUNC( x1 );
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue