forked from pool/freetype2
15 lines
438 B
Diff
15 lines
438 B
Diff
--- a/src/truetype/ttgxvar.c
|
|
+++ b/src/truetype/ttgxvar.c
|
|
@@ -2821,8 +2821,9 @@
|
|
}
|
|
}
|
|
|
|
- /* return value -1 indicates `no change' */
|
|
- if ( !have_diff )
|
|
+ /* return value -1 indicates `no change'; */
|
|
+ /* we can exit early if `normalizedcoords' is already computed */
|
|
+ if ( blend->normalizedcoords && !have_diff )
|
|
return -1;
|
|
|
|
if ( FT_NEW_ARRAY( normalized, mmvar->num_axis ) )
|