summaryrefslogtreecommitdiff
path: root/src/cid/cidriver.c
diff options
context:
space:
mode:
authorsuzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>2023-05-11 14:31:23 +0000
committersuzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>2023-05-11 14:31:23 +0000
commit6ca0a9356ff05c15edbc2bbd905221beacbef447 (patch)
treec5b7df93c0aec8bb901d0e9e78261326ef4258cb /src/cid/cidriver.c
parentc3876354e5c0812ae5929f7e68849c2e611b720c (diff)
downloadfreetype2-6ca0a9356ff05c15edbc2bbd905221beacbef447.tar.gz
[t1cid] Set FT_FACE_FLAG_CID_KEYED.
* cidobjs.c (cid_face_init): Set FT_FACE_FLAG_CID_KEYED. * cidriver.c (cid_get_is_cid): Comment about the case that is_cid cannot guarantee the glyph collection specification.
Diffstat (limited to 'src/cid/cidriver.c')
-rw-r--r--src/cid/cidriver.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/cid/cidriver.c b/src/cid/cidriver.c
index fd015ef2e..0907b1dcf 100644
--- a/src/cid/cidriver.c
+++ b/src/cid/cidriver.c
@@ -141,8 +141,14 @@
FT_UNUSED( face );
+ /*
+ * XXX: If the ROS is Adobe-Identity-H or -V,
+ * the font has no reliable information about
+ * its glyph collection. Should we not set
+ * *is_cid in such cases?
+ */
if ( is_cid )
- *is_cid = 1; /* cid driver is only used for CID keyed fonts */
+ *is_cid = 1;
return error;
}