harfbuzz/TODO

105 lines
2.2 KiB
Plaintext
Raw Normal View History

2010-10-13 14:57:27 +00:00
General fixes:
=============
2012-04-17 17:42:30 +00:00
- Warn at compile time (and runtime with HB_DEBUG?) if no Unicode funcs
found / set.
2012-04-12 21:38:02 +00:00
- In hb_shape(), assert if direction is INVALID.
- Fix TT 'kern' on/off and GPOS interaction (move kerning before GPOS).
2010-10-13 14:57:27 +00:00
2012-04-12 01:54:37 +00:00
- Do proper rounding when scaling from font space? May be a non-issue.
2011-05-17 21:08:36 +00:00
2011-06-01 16:44:30 +00:00
- Misc features:
* init/medi/fina/isol for non-cursive scripts
2012-04-12 02:04:42 +00:00
* vkna,hkna etc for kana, etc
2011-06-01 16:44:30 +00:00
2011-09-16 20:34:39 +00:00
- Move non-native direction and normalization handling to the generic non-OT
layer, such that uniscribe and other backends can use.
- Uniscribe backend needs to enforce one direction only, otherwise cluster
2012-05-18 00:15:49 +00:00
values can confuse the user.
2011-09-16 20:34:39 +00:00
2012-05-18 00:15:49 +00:00
- GSUB ligation should call merge_clusters(). Also other places.
2012-04-12 01:54:37 +00:00
2012-05-12 22:54:07 +00:00
- Convert NBSP into space glyph.
2012-05-18 00:15:49 +00:00
- Synthetic GDEF.
2011-05-25 13:56:06 +00:00
2010-10-13 14:57:27 +00:00
API issues to fix before 1.0:
============================
2011-05-27 20:05:01 +00:00
- Add pkg-config files for glue codes (harfbuzz-glib, etc)
2010-10-13 14:57:27 +00:00
- Figure out how many .so objects, how to link, etc
2012-04-12 01:54:37 +00:00
- 'const' for getter APIs? (use mutable internally)
2012-05-18 00:15:49 +00:00
- blob_from_file?
2012-04-12 01:54:37 +00:00
API additions
=============
2012-04-12 21:38:02 +00:00
- Buffer (de)serialize API ala hb-shape?
2012-04-12 01:54:37 +00:00
- Move feature parsing from util into the library
2011-04-07 19:53:26 +00:00
- Add hb-cairo glue
2011-05-25 13:56:06 +00:00
- Add sanitize API (and a cached version, that saves result on blob user-data)
2011-05-12 02:00:56 +00:00
- Add glib GBoxedType stuff and introspection
2011-04-20 20:40:56 +00:00
2011-08-08 22:13:24 +00:00
- Add Uniscribe face / font get API
2011-05-14 00:25:38 +00:00
- BCP 47 language handling / API (language_matches?)
2011-05-12 01:08:31 +00:00
- Add hb_face_get_glyph_count()?
2010-10-13 14:57:27 +00:00
- Add hb_font_create_linear()?
2012-04-12 01:54:37 +00:00
- Add hb_shape_plan()/hb_shape_planned()
2010-01-26 17:17:37 +00:00
2010-10-13 14:57:27 +00:00
- Add query API for aalt-like features?
2011-05-06 23:30:46 +00:00
- SFNT api? get_num_faces? get_table_tags? (there's something in stash)
2010-10-13 14:57:27 +00:00
- Add segmentation API
2012-04-12 01:54:37 +00:00
- Add hb-fribidi glue?
2010-10-13 14:57:27 +00:00
2012-04-10 14:52:03 +00:00
hb-view / hb-shape enhancements:
===============================
2011-04-27 16:14:53 +00:00
- Add --width, --height, --auto-size, --align, etc?
2012-04-10 14:52:03 +00:00
- Add XML and JSON formats to hb-shape
2012-04-12 21:38:02 +00:00
- --features="init=medi=isol=fina=0"
2011-04-27 16:14:53 +00:00
2011-05-12 05:02:03 +00:00
Tests to write:
==============
- ot-layout enumeration API (needs font)
- Finish test-shape.c, grep for TODO
- Finish test-unicode.c, grep for TODO
2011-05-25 18:43:10 +00:00
2012-04-14 22:47:07 +00:00
- GObject, FreeType, etc
2012-04-24 02:41:09 +00:00
- hb_set_t
- hb_cache_t and relatives
2011-05-12 05:02:03 +00:00
2010-10-13 14:57:27 +00:00
Optimizations:
=============
2011-04-07 19:53:26 +00:00
- Avoid allocating blob objects internally for for_data() faces?
2010-10-13 14:57:27 +00:00
2012-04-10 14:52:03 +00:00
- Add caching layer to hb-ft?
2012-05-18 00:15:49 +00:00
- Cache feature-less shape plans internally on the face.