1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 21:32:13 +03:00

deps: harfbuzz -> 4.1.0

This commit is contained in:
Wez Furlong 2022-03-26 10:51:35 -07:00
parent 6d7f3e2e0b
commit 8eb497fa19
3 changed files with 10 additions and 7 deletions

@ -1 +1 @@
Subproject commit 1f79ba9407ecd54e382997940cbcc3fb71bef8be
Subproject commit c36844d6d923bfc765f841fde10d6f505ff297fd

View File

@ -6,12 +6,6 @@
#![allow(clippy::unreadable_literal)]
#![allow(clippy::upper_case_acronyms)]
pub type __int8_t = ::std::os::raw::c_schar;
pub type __uint8_t = ::std::os::raw::c_uchar;
pub type __int16_t = ::std::os::raw::c_short;
pub type __uint16_t = ::std::os::raw::c_ushort;
pub type __int32_t = ::std::os::raw::c_int;
pub type __uint32_t = ::std::os::raw::c_uint;
pub type hb_bool_t = ::std::os::raw::c_int;
pub type hb_codepoint_t = u32;
pub type hb_position_t = i32;
@ -757,6 +751,13 @@ extern "C" {
extern "C" {
pub fn hb_set_add_range(set: *mut hb_set_t, first: hb_codepoint_t, last: hb_codepoint_t);
}
extern "C" {
pub fn hb_set_add_sorted_array(
set: *mut hb_set_t,
sorted_codepoints: *const hb_codepoint_t,
num_codepoints: ::std::os::raw::c_uint,
);
}
extern "C" {
pub fn hb_set_del(set: *mut hb_set_t, codepoint: hb_codepoint_t);
}

View File

@ -14,6 +14,8 @@ As features stabilize some brief notes about them will accumulate here.
#### New
#### Changed
#### Updated and Improved
* Bundled harfbuzz to 4.1.0
#### Fixed
* Incorrect csi-u encoding with non-ascii characters. [#1746](https://github.com/wez/wezterm/issues/1746)
* X11 `_NET_WM_ICON` had red/blue channels swapped [#1754](https://github.com/wez/wezterm/issues/1754)