Trailing space.
This commit is contained in:
parent
f841ad3ec2
commit
237c0abfdc
|
@ -535,7 +535,7 @@ FT_BEGIN_HEADER
|
||||||
*
|
*
|
||||||
* @description:
|
* @description:
|
||||||
* This function analyzes a glyph outline and tries to compute its
|
* This function analyzes a glyph outline and tries to compute its
|
||||||
* fill orientation (see @FT_Orientation). This is done by integrating
|
* fill orientation (see @FT_Orientation). This is done by integrating
|
||||||
* the total area covered by the outline. The positive integral
|
* the total area covered by the outline. The positive integral
|
||||||
* corresponds to the clockwise orientation and @FT_ORIENTATION_POSTSCRIPT
|
* corresponds to the clockwise orientation and @FT_ORIENTATION_POSTSCRIPT
|
||||||
* is returned. The negative integral corresponds to the counter-clockwise
|
* is returned. The negative integral corresponds to the counter-clockwise
|
||||||
|
|
|
@ -329,7 +329,7 @@
|
||||||
* out whether a glyph gets shifted vertically, but this is something I
|
* out whether a glyph gets shifted vertically, but this is something I
|
||||||
* would like to avoid if not really necessary.
|
* would like to avoid if not really necessary.
|
||||||
*
|
*
|
||||||
* Note that we don't follow this logic for the default coverage.
|
* Note that we don't follow this logic for the default coverage.
|
||||||
* Complex scripts like Devanagari have mandatory GPOS features to
|
* Complex scripts like Devanagari have mandatory GPOS features to
|
||||||
* position many glyph elements, using mark-to-base or mark-to-ligature
|
* position many glyph elements, using mark-to-base or mark-to-ligature
|
||||||
* tables; the number of glyphs missed due to condition (b) would be far
|
* tables; the number of glyphs missed due to condition (b) would be far
|
||||||
|
|
|
@ -86,7 +86,7 @@
|
||||||
TBBox_Rec* user )
|
TBBox_Rec* user )
|
||||||
{
|
{
|
||||||
FT_UPDATE_BBOX( to, user->bbox );
|
FT_UPDATE_BBOX( to, user->bbox );
|
||||||
|
|
||||||
user->last = *to;
|
user->last = *to;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -396,7 +396,7 @@
|
||||||
*
|
*
|
||||||
* We do the computation with integers only, applying a gamma of 2.0.
|
* We do the computation with integers only, applying a gamma of 2.0.
|
||||||
* We guarantee 32-bit arithmetic to avoid overflow but the resulting
|
* We guarantee 32-bit arithmetic to avoid overflow but the resulting
|
||||||
* luminosity fits into 16 bits.
|
* luminosity fits into 16 bits.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -307,7 +307,7 @@
|
||||||
if ( hi >= y )
|
if ( hi >= y )
|
||||||
return (FT_UInt32)0x7FFFFFFFL;
|
return (FT_UInt32)0x7FFFFFFFL;
|
||||||
|
|
||||||
/* We shift as many bits as we can into the high register, perform */
|
/* We shift as many bits as we can into the high register, perform */
|
||||||
/* 32-bit division with modulo there, then work through the remaining */
|
/* 32-bit division with modulo there, then work through the remaining */
|
||||||
/* bits with long division. This optimization is especially noticeable */
|
/* bits with long division. This optimization is especially noticeable */
|
||||||
/* for smaller dividends that barely use the high register. */
|
/* for smaller dividends that barely use the high register. */
|
||||||
|
@ -611,10 +611,10 @@
|
||||||
FT_Int64 temp, temp2;
|
FT_Int64 temp, temp2;
|
||||||
|
|
||||||
|
|
||||||
temp.hi = a >> 16;
|
temp.hi = a >> 16;
|
||||||
temp.lo = a << 16;
|
temp.lo = a << 16;
|
||||||
temp2.hi = 0;
|
temp2.hi = 0;
|
||||||
temp2.lo = b >> 1;
|
temp2.lo = b >> 1;
|
||||||
|
|
||||||
FT_Add64( &temp, &temp2, &temp );
|
FT_Add64( &temp, &temp2, &temp );
|
||||||
q = (FT_Long)ft_div64by32( temp.hi, temp.lo, b );
|
q = (FT_Long)ft_div64by32( temp.hi, temp.lo, b );
|
||||||
|
|
|
@ -384,7 +384,7 @@ THE SOFTWARE.
|
||||||
BDF_Face_Done( bdfface );
|
BDF_Face_Done( bdfface );
|
||||||
return FT_THROW( Invalid_Argument );
|
return FT_THROW( Invalid_Argument );
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
bdf_property_t* prop = NULL;
|
bdf_property_t* prop = NULL;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue