mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-25 20:38:36 +00:00
[imgui-glutin-support] get_frame_size: Pass immutable Window
There is no reason to pass an immutable window, as the function does not mutate it.
This commit is contained in:
parent
4da1e5f54a
commit
19ab82e521
@ -223,7 +223,7 @@ pub fn update_mouse_cursor(imgui: &ImGui, window: &Window) {
|
|||||||
/// Get the current frame size for imgui frame rendering.
|
/// Get the current frame size for imgui frame rendering.
|
||||||
///
|
///
|
||||||
/// Returns `None` if the window no longer exists
|
/// Returns `None` if the window no longer exists
|
||||||
pub fn get_frame_size(window: &mut Window) -> Option<FrameSize> {
|
pub fn get_frame_size(window: &Window) -> Option<FrameSize> {
|
||||||
window.get_inner_size().map(|logical_size| FrameSize {
|
window.get_inner_size().map(|logical_size| FrameSize {
|
||||||
logical_size: logical_size.into(),
|
logical_size: logical_size.into(),
|
||||||
hidpi_factor: window.get_hidpi_factor(),
|
hidpi_factor: window.get_hidpi_factor(),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user