Update bundled HarfBuzz to 0.9.40
Change-Id: I88c3608c3f15e39e89a00cfc23c184aebe7097e4 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
This commit is contained in:
parent
241ff426eb
commit
f2ec2fcd55
8
src/3rdparty/harfbuzz-ng/NEWS
vendored
8
src/3rdparty/harfbuzz-ng/NEWS
vendored
@ -1,3 +1,11 @@
|
||||
Overview of changes leading to 0.9.40
|
||||
Friday, March 20, 2015
|
||||
=====================================
|
||||
|
||||
- Another hb-coretext crasher fix. Ouch!
|
||||
- Happy Norouz!
|
||||
|
||||
|
||||
Overview of changes leading to 0.9.39
|
||||
Wednesday, March 4, 2015
|
||||
=====================================
|
||||
|
2
src/3rdparty/harfbuzz-ng/src/hb-buffer.cc
vendored
2
src/3rdparty/harfbuzz-ng/src/hb-buffer.cc
vendored
@ -443,7 +443,7 @@ hb_buffer_t::reverse_range (unsigned int start,
|
||||
{
|
||||
unsigned int i, j;
|
||||
|
||||
if (start == end - 1)
|
||||
if (end - start < 2)
|
||||
return;
|
||||
|
||||
for (i = start, j = end - 1; i < j; i++, j--) {
|
||||
|
8
src/3rdparty/harfbuzz-ng/src/hb-common.cc
vendored
8
src/3rdparty/harfbuzz-ng/src/hb-common.cc
vendored
@ -57,7 +57,7 @@ _hb_options_init (void)
|
||||
|
||||
/**
|
||||
* hb_tag_from_string:
|
||||
* @str: (array length=len):
|
||||
* @str: (array length=len) (element-type uint8_t):
|
||||
* @len:
|
||||
*
|
||||
*
|
||||
@ -115,7 +115,7 @@ const char direction_strings[][4] = {
|
||||
|
||||
/**
|
||||
* hb_direction_from_string:
|
||||
* @str: (array length=len):
|
||||
* @str: (array length=len) (element-type uint8_t):
|
||||
* @len:
|
||||
*
|
||||
*
|
||||
@ -281,7 +281,7 @@ retry:
|
||||
|
||||
/**
|
||||
* hb_language_from_string:
|
||||
* @str: (array length=len):
|
||||
* @str: (array length=len) (element-type uint8_t):
|
||||
* @len:
|
||||
*
|
||||
*
|
||||
@ -401,7 +401,7 @@ hb_script_from_iso15924_tag (hb_tag_t tag)
|
||||
|
||||
/**
|
||||
* hb_script_from_string:
|
||||
* @s: (array length=len):
|
||||
* @s: (array length=len) (element-type uint8_t):
|
||||
* @len:
|
||||
*
|
||||
*
|
||||
|
2
src/3rdparty/harfbuzz-ng/src/hb-font.cc
vendored
2
src/3rdparty/harfbuzz-ng/src/hb-font.cc
vendored
@ -814,7 +814,7 @@ hb_font_glyph_to_string (hb_font_t *font,
|
||||
/**
|
||||
* hb_font_glyph_from_string:
|
||||
* @font: a font.
|
||||
* @s: (array length=len):
|
||||
* @s: (array length=len) (element-type uint8_t):
|
||||
* @len:
|
||||
* @glyph: (out):
|
||||
*
|
||||
|
2
src/3rdparty/harfbuzz-ng/src/hb-shape.cc
vendored
2
src/3rdparty/harfbuzz-ng/src/hb-shape.cc
vendored
@ -198,7 +198,7 @@ parse_one_feature (const char **pp, const char *end, hb_feature_t *feature)
|
||||
|
||||
/**
|
||||
* hb_feature_from_string:
|
||||
* @str: (array length=len):
|
||||
* @str: (array length=len) (element-type uint8_t):
|
||||
* @len:
|
||||
* @feature: (out) (optional):
|
||||
*
|
||||
|
4
src/3rdparty/harfbuzz-ng/src/hb-version.h
vendored
4
src/3rdparty/harfbuzz-ng/src/hb-version.h
vendored
@ -38,9 +38,9 @@ HB_BEGIN_DECLS
|
||||
|
||||
#define HB_VERSION_MAJOR 0
|
||||
#define HB_VERSION_MINOR 9
|
||||
#define HB_VERSION_MICRO 39
|
||||
#define HB_VERSION_MICRO 40
|
||||
|
||||
#define HB_VERSION_STRING "0.9.39"
|
||||
#define HB_VERSION_STRING "0.9.40"
|
||||
|
||||
#define HB_VERSION_ATLEAST(major,minor,micro) \
|
||||
((major)*10000+(minor)*100+(micro) <= \
|
||||
|
Loading…
Reference in New Issue
Block a user