mirror of
https://github.com/italicsjenga/rust_minifb.git
synced 2024-12-23 19:31:30 +11:00
Bump versions (#266)
* bump wayland deps * bump xkbcommon-sys * bump raw-window-handle * bump png
This commit is contained in:
parent
e0992261c9
commit
a4ba00b209
12
Cargo.toml
12
Cargo.toml
|
@ -20,13 +20,13 @@ exclude = [
|
||||||
maintenance = {status = "actively-developed"}
|
maintenance = {status = "actively-developed"}
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
png = "0.16"
|
png = "0.17"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
cc = "1.0"
|
cc = "1.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
raw-window-handle = "0.3.3"
|
raw-window-handle = "0.4"
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies.winapi]
|
[target.'cfg(windows)'.dependencies.winapi]
|
||||||
version = "0.3"
|
version = "0.3"
|
||||||
|
@ -43,12 +43,12 @@ x11 = ["x11-dl", "xkb", "libc"]
|
||||||
wayland = ["wayland-client", "wayland-protocols", "wayland-cursor", "tempfile", "xkb", "xkbcommon-sys"]
|
wayland = ["wayland-client", "wayland-protocols", "wayland-cursor", "tempfile", "xkb", "xkbcommon-sys"]
|
||||||
|
|
||||||
[target.'cfg(not(any(target_os = "macos", target_os = "redox", windows)))'.dependencies]
|
[target.'cfg(not(any(target_os = "macos", target_os = "redox", windows)))'.dependencies]
|
||||||
wayland-client = {version = "0.28", optional = true}
|
wayland-client = {version = "0.29", optional = true}
|
||||||
wayland-protocols = { version = "0.28", features = ["client", "unstable_protocols"], optional = true }
|
wayland-protocols = { version = "0.29", features = ["client", "unstable_protocols"], optional = true }
|
||||||
wayland-cursor = {version = "0.28", optional = true}
|
wayland-cursor = {version = "0.29", optional = true}
|
||||||
tempfile = {version = "3.2", optional = true}
|
tempfile = {version = "3.2", optional = true}
|
||||||
xkb = {version = "0.2.1", optional = true}
|
xkb = {version = "0.2.1", optional = true}
|
||||||
xkbcommon-sys = {version = "0.7.5", optional = true}
|
xkbcommon-sys = {version = "1.3", optional = true}
|
||||||
x11-dl = {version = "2.19.1", optional = true}
|
x11-dl = {version = "2.19.1", optional = true}
|
||||||
libc = {version = "0.2.107", optional = true}
|
libc = {version = "0.2.107", optional = true}
|
||||||
|
|
||||||
|
|
|
@ -6,9 +6,9 @@ fn main() {
|
||||||
// via `Transformations`. The default output transformation is `Transformations::EXPAND
|
// via `Transformations`. The default output transformation is `Transformations::EXPAND
|
||||||
// | Transformations::STRIP_ALPHA`.
|
// | Transformations::STRIP_ALPHA`.
|
||||||
let decoder = png::Decoder::new(File::open("resources/uv.png").unwrap());
|
let decoder = png::Decoder::new(File::open("resources/uv.png").unwrap());
|
||||||
let (info, mut reader) = decoder.read_info().unwrap();
|
let mut reader = decoder.read_info().unwrap();
|
||||||
// Allocate the output buffer.
|
// Allocate the output buffer.
|
||||||
let mut buf = vec![0; info.buffer_size()];
|
let mut buf = vec![0; reader.output_buffer_size()];
|
||||||
// Read the next frame. Currently this function should only called once.
|
// Read the next frame. Currently this function should only called once.
|
||||||
// The default options
|
// The default options
|
||||||
reader.next_frame(&mut buf).unwrap();
|
reader.next_frame(&mut buf).unwrap();
|
||||||
|
@ -21,8 +21,8 @@ fn main() {
|
||||||
|
|
||||||
let mut window = Window::new(
|
let mut window = Window::new(
|
||||||
"Noise Test - Press ESC to exit",
|
"Noise Test - Press ESC to exit",
|
||||||
info.width as usize,
|
reader.info().width as usize,
|
||||||
info.height as usize,
|
reader.info().height as usize,
|
||||||
WindowOptions {
|
WindowOptions {
|
||||||
resize: true,
|
resize: true,
|
||||||
scale_mode: ScaleMode::Center,
|
scale_mode: ScaleMode::Center,
|
||||||
|
@ -33,7 +33,11 @@ fn main() {
|
||||||
|
|
||||||
while window.is_open() && !window.is_key_down(Key::Escape) {
|
while window.is_open() && !window.is_key_down(Key::Escape) {
|
||||||
window
|
window
|
||||||
.update_with_buffer(&u32_buffer, info.width as usize, info.height as usize)
|
.update_with_buffer(
|
||||||
|
&u32_buffer,
|
||||||
|
reader.info().width as usize,
|
||||||
|
reader.info().height as usize,
|
||||||
|
)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -261,12 +261,10 @@ unsafe extern "C" fn char_callback(window: *mut c_void, code_point: u32) {
|
||||||
|
|
||||||
unsafe impl raw_window_handle::HasRawWindowHandle for Window {
|
unsafe impl raw_window_handle::HasRawWindowHandle for Window {
|
||||||
fn raw_window_handle(&self) -> raw_window_handle::RawWindowHandle {
|
fn raw_window_handle(&self) -> raw_window_handle::RawWindowHandle {
|
||||||
let handle = raw_window_handle::macos::MacOSHandle {
|
let mut handle = raw_window_handle::AppKitHandle::empty();
|
||||||
ns_window: self.window_handle as *mut _,
|
handle.ns_window = self.window_handle as *mut _;
|
||||||
ns_view: self.view_handle as *mut _,
|
handle.ns_view = self.view_handle as *mut _;
|
||||||
..raw_window_handle::macos::MacOSHandle::empty()
|
raw_window_handle::RawWindowHandle::AppKit(handle)
|
||||||
};
|
|
||||||
raw_window_handle::RawWindowHandle::MacOS(handle)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1072,12 +1072,14 @@ impl Window {
|
||||||
v.set_len(len as usize);
|
v.set_len(len as usize);
|
||||||
file.read_exact(&mut v)?;
|
file.read_exact(&mut v)?;
|
||||||
|
|
||||||
let ctx = xkbcommon_sys::xkb_context_new(0);
|
let ctx = xkbcommon_sys::xkb_context_new(
|
||||||
|
xkbcommon_sys::xkb_context_flags::XKB_CONTEXT_NO_FLAGS,
|
||||||
|
);
|
||||||
let kb_map_ptr = xkbcommon_sys::xkb_keymap_new_from_string(
|
let kb_map_ptr = xkbcommon_sys::xkb_keymap_new_from_string(
|
||||||
ctx,
|
ctx,
|
||||||
v.as_ptr() as *const _ as *const std::os::raw::c_char,
|
v.as_ptr() as *const _ as *const std::os::raw::c_char,
|
||||||
xkbcommon_sys::xkb_keymap_format::XKB_KEYMAP_FORMAT_TEXT_V1,
|
xkbcommon_sys::xkb_keymap_format::XKB_KEYMAP_FORMAT_TEXT_V1,
|
||||||
0,
|
xkbcommon_sys::xkb_keymap_compile_flags::XKB_KEYMAP_COMPILE_NO_FLAGS,
|
||||||
);
|
);
|
||||||
|
|
||||||
// Wrap keymap
|
// Wrap keymap
|
||||||
|
@ -1195,7 +1197,7 @@ impl Window {
|
||||||
|
|
||||||
unsafe impl raw_window_handle::HasRawWindowHandle for Window {
|
unsafe impl raw_window_handle::HasRawWindowHandle for Window {
|
||||||
fn raw_window_handle(&self) -> raw_window_handle::RawWindowHandle {
|
fn raw_window_handle(&self) -> raw_window_handle::RawWindowHandle {
|
||||||
let mut handle = raw_window_handle::unix::WaylandHandle::empty();
|
let mut handle = raw_window_handle::WaylandHandle::empty();
|
||||||
handle.surface = self.display.surface.as_ref().c_ptr() as *mut _ as *mut c_void;
|
handle.surface = self.display.surface.as_ref().c_ptr() as *mut _ as *mut c_void;
|
||||||
handle.display = self
|
handle.display = self
|
||||||
.display
|
.display
|
||||||
|
|
|
@ -323,11 +323,9 @@ pub struct Window {
|
||||||
|
|
||||||
unsafe impl raw_window_handle::HasRawWindowHandle for Window {
|
unsafe impl raw_window_handle::HasRawWindowHandle for Window {
|
||||||
fn raw_window_handle(&self) -> raw_window_handle::RawWindowHandle {
|
fn raw_window_handle(&self) -> raw_window_handle::RawWindowHandle {
|
||||||
let handle = raw_window_handle::unix::XlibHandle {
|
let mut handle = raw_window_handle::XlibHandle::empty();
|
||||||
window: self.handle,
|
handle.window = self.handle;
|
||||||
display: self.d.display as *mut core::ffi::c_void,
|
handle.display = self.d.display as *mut core::ffi::c_void;
|
||||||
..raw_window_handle::unix::XlibHandle::empty()
|
|
||||||
};
|
|
||||||
raw_window_handle::RawWindowHandle::Xlib(handle)
|
raw_window_handle::RawWindowHandle::Xlib(handle)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -454,12 +454,11 @@ pub struct Window {
|
||||||
|
|
||||||
unsafe impl raw_window_handle::HasRawWindowHandle for Window {
|
unsafe impl raw_window_handle::HasRawWindowHandle for Window {
|
||||||
fn raw_window_handle(&self) -> raw_window_handle::RawWindowHandle {
|
fn raw_window_handle(&self) -> raw_window_handle::RawWindowHandle {
|
||||||
let handle = raw_window_handle::windows::WindowsHandle {
|
let mut handle = raw_window_handle::Win32Handle::empty();
|
||||||
hwnd: self.window.unwrap() as *mut raw::c_void,
|
handle.hwnd = self.window.unwrap() as *mut raw::c_void;
|
||||||
hinstance: unsafe { libloaderapi::GetModuleHandleA(ptr::null()) } as *mut raw::c_void,
|
handle.hinstance =
|
||||||
..raw_window_handle::windows::WindowsHandle::empty()
|
unsafe { libloaderapi::GetModuleHandleA(ptr::null()) } as *mut raw::c_void;
|
||||||
};
|
raw_window_handle::RawWindowHandle::Win32(handle)
|
||||||
raw_window_handle::RawWindowHandle::Windows(handle)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue