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:
parent
6d7f3e2e0b
commit
8eb497fa19
2
deps/harfbuzz/harfbuzz
vendored
2
deps/harfbuzz/harfbuzz
vendored
@ -1 +1 @@
|
||||
Subproject commit 1f79ba9407ecd54e382997940cbcc3fb71bef8be
|
||||
Subproject commit c36844d6d923bfc765f841fde10d6f505ff297fd
|
13
deps/harfbuzz/src/lib.rs
vendored
13
deps/harfbuzz/src/lib.rs
vendored
@ -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);
|
||||
}
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user