mirror of
git://git.sv.nongnu.org/freetype/freetype2.git
synced 2026-01-19 04:52:09 +00:00
[gxvar] Micro-optimize loop end condition.
* src/truetype/ttgxvar.c (TT_Vary_Apply_Glyph_Deltas): Do it.
This commit is contained in:
committed by
Werner Lemberg
parent
dc8efeff2a
commit
0a574d50e8
@@ -4147,7 +4147,8 @@
|
||||
points_org[j].y = FT_intToFixed( outline->points[j].y );
|
||||
}
|
||||
|
||||
for ( i = 0; i < ( tupleCount & GX_TC_TUPLE_COUNT_MASK ); i++ )
|
||||
tupleCount &= GX_TC_TUPLE_COUNT_MASK;
|
||||
for ( i = 0; i < tupleCount; i++ )
|
||||
{
|
||||
FT_UInt tupleDataSize;
|
||||
FT_UInt tupleIndex;
|
||||
|
||||
Reference in New Issue
Block a user