1. 16 8月, 2017 1 次提交
  2. 15 8月, 2017 1 次提交
  3. 12 8月, 2017 2 次提交
  4. 11 8月, 2017 1 次提交
  5. 20 7月, 2017 1 次提交
  6. 19 7月, 2017 1 次提交
    • B
      [hb-shape] Improve shaping-debug output · e6035055
      Behdad Esfahbod 提交于
      Before, that was printed using --debug (and in both hb-shape and hb-view).
      Changed it, now hb-shape has a new command-line argument called --show-messages.
      When invoked, it also respects other output formatting options.  The messages
      are better formatted and printed to te same place that hb-shape output is
      directed to.  Previously they were written to stderr.
      
      Fixes https://github.com/behdad/harfbuzz/issues/506
      e6035055
  7. 22 1月, 2017 1 次提交
    • B
      [util] Add --variations · 111f3e55
      Behdad Esfahbod 提交于
      Is hooked up to the font, but not to FreeType, so raster doesn't show yet.
      
      Documentation needs to be done.
      111f3e55
  8. 16 11月, 2015 1 次提交
  9. 11 11月, 2015 1 次提交
  10. 04 11月, 2015 1 次提交
  11. 24 8月, 2015 1 次提交
  12. 22 7月, 2015 1 次提交
  13. 21 1月, 2015 1 次提交
  14. 06 7月, 2014 1 次提交
  15. 05 7月, 2014 1 次提交
  16. 20 3月, 2014 1 次提交
  17. 28 10月, 2013 1 次提交
  18. 27 8月, 2013 1 次提交
  19. 12 4月, 2013 1 次提交
  20. 15 2月, 2013 1 次提交
    • B
      Disable automatic segment properties guessing · c462b32d
      Behdad Esfahbod 提交于
      Before, if one called hb_shape() without setting script, language, and
      direction on the buffer, hb_shape() was calling
      hb_buffer_guess_segment_properties() on the user's behalf to guess
      these.
      
      This is very dangerous, since any serious user of HarfBuzz must set
      these properly (specially important is direction).  So now, we don't
      guess properties by default.  People not setting direction will get
      an abort() now.  If the old behavior is desired (fragile, good for
      simple testing only), users can call
      hb_buffer_guess_segment_properties() on the buffer just before calling
      hb_shape().
      c462b32d
  21. 13 2月, 2013 1 次提交
    • B
      Improve checks for setmode() · e2aab4b5
      Behdad Esfahbod 提交于
      As reported by Jonathan, OS X has setmode() that is something other
      than what setmode() is on Win32.  So, limit invocation to Windows
      platforms only.
      e2aab4b5
  22. 01 2月, 2013 1 次提交
  23. 08 1月, 2013 1 次提交
  24. 22 12月, 2012 2 次提交
  25. 16 11月, 2012 1 次提交
  26. 14 11月, 2012 2 次提交
  27. 07 8月, 2012 1 次提交
  28. 18 7月, 2012 1 次提交
  29. 06 6月, 2012 1 次提交
  30. 04 6月, 2012 1 次提交
  31. 03 6月, 2012 2 次提交
  32. 16 5月, 2012 1 次提交
    • B
      [util] Add hb-ot-shape-closure tool · c87b317f
      Behdad Esfahbod 提交于
      Computes all the glyphs that may be generated given a font and
      set of Unicode characters.
      
      The order of the Unicode characters is irrelevant.
      
      Sample output:
      
      behdad:util 0$ ./hb-ot-shape-closure Doulos\ SIL\ Regular.ttf f
      f f_f
      
      behdad:util 0$ ./hb-ot-shape-closure Doulos\ SIL\ Regular.ttf i
      i
      
      behdad:util 0$ ./hb-ot-shape-closure Doulos\ SIL\ Regular.ttf fi
      f f_i f_f_i f_f i
      
      behdad:util 0$ ./hb-ot-shape-closure DroidNaskh-Regular.ttf ب
      uni0628 uni0628.init uni0628.medi uni0628.fina
      
      behdad:util 0$ ./hb-ot-shape-closure DroidNaskh-Regular.ttf ا
      uni0627 uni0627.fina
      
      behdad:util 0$ ./hb-ot-shape-closure DroidNaskh-Regular.ttf با
      uni0627 uni0627.fina uni0628 uni0628.init uni0628.medi uni0628.fina
      
      behdad:util 0$ ./hb-ot-shape-closure DroidNaskh-Regular.ttf با --no-glyph-names
      5 6 133 134 135 136
      c87b317f
  33. 13 5月, 2012 2 次提交
  34. 12 5月, 2012 2 次提交