1. 10 8月, 2012 1 次提交
  2. 09 8月, 2012 2 次提交
  3. 08 8月, 2012 2 次提交
  4. 16 5月, 2012 1 次提交
  5. 20 9月, 2011 1 次提交
  6. 15 9月, 2011 1 次提交
  7. 09 9月, 2011 4 次提交
  8. 26 8月, 2011 1 次提交
    • B
      [API] Make all _from_string() functions take a len parameter · 4c9fe88d
      Behdad Esfahbod 提交于
      Can be -1 for NUL-terminated string.  This is useful for passing parts
      of a larger string to a function without having to copy or modify the
      string first.
      
      Affected functions:
      
      	hb_tag_t hb_tag_from_string()
      	hb_direction_from_string()
      	hb_language_from_string()
      	hb_script_from_string()
      4c9fe88d
  9. 20 8月, 2011 1 次提交
  10. 11 8月, 2011 2 次提交
  11. 10 8月, 2011 3 次提交
  12. 09 8月, 2011 1 次提交
  13. 06 8月, 2011 1 次提交
  14. 05 8月, 2011 2 次提交
    • B
      [API] Changes to main shape API · 02aeca98
      Behdad Esfahbod 提交于
      hb_shape() now accepts a shaper_options and a shaper_list argument.
      Both can be set to NULL to emulate previous API.  And in most situations
      they are expected to be set to NULL.
      
      hb_shape() also returns a boolean for now.  If shaper_list is NULL, the
      return value can be ignored.
      
      shaper_options is ignored for now, but otherwise it should be a
      NULL-terminated list of strings.
      
      shaper_list is a NULL-terminated list of strings.  Currently recognized
      strings are "ot" for native OpenType Layout implementation, "uniscribe"
      for the Uniscribe backend, and "fallback" for the non-complex backend
      (that will be implemented shortly).  The fallback backend never fails.
      
      The env var HB_SHAPER_LIST is also parsed and honored.  It's a
      colon-separated list of shaper names.  The fallback shaper is invoked if
      none of the env-listed shapers succeed.
      
      New API hb_buffer_guess_properties() added.
      02aeca98
    • B
      Remove C++ guards from source files · c605bbbb
      Behdad Esfahbod 提交于
      Where causing issues for people with MSVC.
      c605bbbb
  15. 05 7月, 2011 1 次提交
  16. 15 6月, 2011 1 次提交
  17. 01 6月, 2011 1 次提交
  18. 28 5月, 2011 1 次提交
  19. 18 5月, 2011 1 次提交
  20. 17 5月, 2011 2 次提交
  21. 03 5月, 2011 1 次提交
  22. 28 4月, 2011 2 次提交
  23. 27 4月, 2011 1 次提交
  24. 22 4月, 2011 2 次提交
  25. 21 4月, 2011 2 次提交
  26. 19 4月, 2011 1 次提交
  27. 16 4月, 2011 1 次提交
    • B
      Change buffer default properties to invalid · c0af193c
      Behdad Esfahbod 提交于
      This includes HB_DIRECTION_INVALID and HB_SCRIPT_INVALID.
      
      The INVALID will cause a "guess whatever from the text" in hb_shape().
      While it's not ideal, it works better than the previous defaults at
      least (HB_DIRECTION_LTR and HB_SCRIPT_COMMON).
      c0af193c