summaryrefslogtreecommitdiff
path: root/src/psaux/cf2intrp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/psaux/cf2intrp.c')
-rw-r--r--src/psaux/cf2intrp.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/psaux/cf2intrp.c b/src/psaux/cf2intrp.c
index a81628074..3e7ad5763 100644
--- a/src/psaux/cf2intrp.c
+++ b/src/psaux/cf2intrp.c
@@ -38,6 +38,7 @@
#include "cf2ft.h"
#include FT_INTERNAL_DEBUG_H
+#include FT_SERVICE_CFF_TABLE_LOAD_H
#include "cf2glue.h"
#include "cf2font.h"
@@ -47,8 +48,6 @@
#include "cf2error.h"
-#include "cffload.h"
-
/*************************************************************************/
/* */
@@ -689,15 +688,15 @@
}
/* check cached blend vector */
- if ( cff_blend_check_vector( &font->blend,
- font->vsindex,
- font->lenNDV,
- font->NDV ) )
+ if ( font->cffload->blend_check_vector( &font->blend,
+ font->vsindex,
+ font->lenNDV,
+ font->NDV ) )
{
- lastError = cff_blend_build_vector( &font->blend,
- font->vsindex,
- font->lenNDV,
- font->NDV );
+ lastError = font->cffload->blend_build_vector( &font->blend,
+ font->vsindex,
+ font->lenNDV,
+ font->NDV );
if ( lastError )
goto exit;
}