1. 21 3月, 2015 1 次提交
  2. 03 3月, 2015 1 次提交
  3. 27 1月, 2015 2 次提交
    • B
      [API] Add hb_buffer_add_latin1() · 61820bc4
      Behdad Esfahbod 提交于
      This is by no ways to promote non-Unicode encodings.  This is an entry
      point that takes Unicode codepoints that happen to all be the first
      256 characters and hence fit in 8bit strings.  This is useful eg in Chrome
      where strings that can fit in 8bit are implemented that way, and this
      avoids copying into UTF-8 or UTF-16.
      
      Perhaps we should rename this to hb_buffer_add_codepoints8().  I'm also
      curious if anyone would be really interested in hb_buffer_add_codepoints16().
      
      Please discuss!
      61820bc4
    • B
      78c6e86c
  4. 07 1月, 2015 1 次提交
  5. 12 8月, 2014 1 次提交
  6. 17 7月, 2014 3 次提交
  7. 15 4月, 2014 1 次提交
    • B
      Add HB_NO_MERGE_CLUSTERS · 66c6a48b
      Behdad Esfahbod 提交于
      Disables any cluster-merging.  Added for testing purposes while
      we investigate what kind of API to add for this.
      66c6a48b
  8. 16 11月, 2013 1 次提交
  9. 14 11月, 2013 2 次提交
  10. 13 11月, 2013 1 次提交
  11. 17 10月, 2013 1 次提交
  12. 15 10月, 2013 1 次提交
    • B
      [otlayout] Fix (Chain)Context recursion! · 6b65a76b
      Behdad Esfahbod 提交于
      Previously we only supported recursive sublookups with
      ascending indices.  We were also not correctly handling
      non-1-to-1 recursed lookups.
      
      Fix all that!
      
      Fixes the three tests in test/shaping/tests/context-matching.tests,
      which were derived from NotoSansBengali and NotoSansDevanagari
      among others.
      6b65a76b
  13. 13 9月, 2013 1 次提交
  14. 07 9月, 2013 2 次提交
  15. 06 9月, 2013 1 次提交
  16. 27 8月, 2013 1 次提交
  17. 30 4月, 2013 1 次提交
  18. 28 2月, 2013 2 次提交
  19. 08 1月, 2013 1 次提交
  20. 22 12月, 2012 1 次提交
  21. 30 11月, 2012 1 次提交
  22. 16 11月, 2012 5 次提交
    • B
    • B
      Bunch of independent changes (ouch) · f3064103
      Behdad Esfahbod 提交于
      API additions:
      
      	hb_segment_properties_t
      	HB_SEGMENT_PROPERTIES_DEFAULT
      	hb_segment_properties_equal()
      	hb_segment_properties_hash()
      
      	hb_buffer_set_segment_properties()
      	hb_buffer_get_segment_properties()
      
      	hb_ot_layout_glyph_class_t
      
      	hb_shape_plan_t
      	hb_shape_plan_create()
      	hb_shape_plan_create_cached()
      	hb_shape_plan_get_empty()
      	hb_shape_plan_reference()
      	hb_shape_plan_destroy()
      	hb_shape_plan_set_user_data()
      	hb_shape_plan_get_user_data()
      	hb_shape_plan_execute()
      
      	hb_ot_shape_plan_collect_lookups()
      
      API changes:
      
      	Rename hb_ot_layout_feature_get_lookup_indexes() to
      	hb_ot_layout_feature_get_lookups().
      
      New header file:
      
      	hb-shape-plan.h
      
      And a bunch of prototyped but not implemented stuff.  Coming soon.
      (Tests fail because of the prototypes right now.)
      f3064103
    • B
      Minor · c54599ad
      Behdad Esfahbod 提交于
      c54599ad
    • B
      Add hb_buffer_serialize_list_formats() · 072ae7a9
      Behdad Esfahbod 提交于
      072ae7a9
    • B
      Add buffer serialization / deserialization API · f9edf167
      Behdad Esfahbod 提交于
      Two output formats for now: TEXT, and JSON.  For example:
      
        hb-shape --output-format=json
      
      Deserialization API is added, but not implemented yet.
      f9edf167
  23. 14 11月, 2012 3 次提交
    • B
      API change: Remove "mask" from hb_buffer_add() · 66ac2ff3
      Behdad Esfahbod 提交于
      I don't expect anybody using hb_buffer_add(), so this shouldn't break
      anyone's code.
      66ac2ff3
    • B
      Add buffer flags · 0c7df222
      Behdad Esfahbod 提交于
      New API:
      
      	hb_buffer_flags_t
      
      	HB_BUFFER_FLAGS_DEFAULT
      	HB_BUFFER_FLAG_BOT
      	HB_BUFFER_FLAG_EOT
      	HB_BUFFER_FLAG_PRESERVE_DEFAULT_IGNORABLES
      
      	hb_buffer_set_flags()
      	hb_buffer_get_flags()
      
      We use the BOT flag to decide whether to insert dottedcircle if the
      first char in the buffer is a combining mark.
      
      The PRESERVE_DEFAULT_IGNORABLES flag prevents removal of characters like
      ZWNJ/ZWJ/...
      0c7df222
    • B
      Add hb_buffer_clear() · 82ecaff7
      Behdad Esfahbod 提交于
      Which is like _reset(), but does NOT clear unicode-funcs.
      82ecaff7
  24. 01 11月, 2012 1 次提交
  25. 30 10月, 2012 1 次提交
  26. 29 10月, 2012 1 次提交
  27. 26 9月, 2012 1 次提交
    • B
      [buffer] Save pre/post textual context · 05207a79
      Behdad Esfahbod 提交于
      To be used for a variety of purposes.  We save up to five characters
      in each direction.  No public API changes, everything is taken care
      of already.  All clients need to do is to call hb_buffer_add_utf* with
      the full text + segment info (or at least some context) instead of
      just passing in the segment.
      
      Various operations (hb_buffer_reset, hb_buffer_set_length,
      hb_buffer_add*) automatically reset the relevant contexts.
      05207a79
  28. 25 9月, 2012 1 次提交