summaryrefslogtreecommitdiff
path: root/src/cid/cidriver.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cid/cidriver.c')
-rw-r--r--src/cid/cidriver.c18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/cid/cidriver.c b/src/cid/cidriver.c
index f7499237d..10cb8c1fd 100644
--- a/src/cid/cidriver.c
+++ b/src/cid/cidriver.c
@@ -150,11 +150,23 @@
FT_UInt *cid )
{
FT_Error error = FT_Err_Ok;
- FT_UNUSED( face );
- if ( cid )
- *cid = glyph_index; /* identity mapping */
+ /*
+ * Currently, FreeType does not support an incrementally-
+ * defined CID-keyed font that stores the glyph description
+ * data in /GlyphDirectory array or dictionary.
+ * Thus the font loaded by the incremental loading feature
+ * is not handled in here.
+ */
+ error = cid_compute_fd_and_offsets( face, glyph_index,
+ NULL, NULL, NULL );
+
+
+ if ( error )
+ *cid = 0;
+ else
+ *cid = glyph_index;
return error;
}