[ImGui] Wrap igGetWindowPos

This commit is contained in:
Malik Olivier Boussejra 2018-09-19 08:36:23 +09:00
parent c2f3936879
commit d62845f4c2

View File

@ -604,6 +604,14 @@ impl<'ui> Ui<'ui> {
}
(out.x, out.y)
}
/// Get current window's position in pixels
pub fn get_window_pos(&self) -> (f32, f32) {
let mut out = ImVec2::new(0.0, 0.0);
unsafe {
sys::igGetWindowPos(&mut out);
}
(out.x, out.y)
}
}
// Layout