From 79b8cf2cc87ccf013254afb44d287a47eea6fe44 Mon Sep 17 00:00:00 2001 From: Sven Nilsen Date: Sat, 25 Jul 2015 13:57:52 +0200 Subject: Keep existing function for backward compatibility --- src/window.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src') diff --git a/src/window.rs b/src/window.rs index 655c54f..00174d3 100644 --- a/src/window.rs +++ b/src/window.rs @@ -294,6 +294,19 @@ impl Window { self.window.set_position(x, y) } + /// Returns the size in points of the client area of the window. + /// + /// The client area is the content of the window, excluding the title bar and borders. + /// To get the dimensions of the frame buffer when calling `glViewport`, multiply with hidpi factor. + /// + /// Returns `None` if the window no longer exists. + /// + /// DEPRECATED + #[inline] + pub fn get_inner_size(&self) -> Option<(u32, u32)> { + self.window.get_inner_size() + } + /// Returns the size in points of the client area of the window. /// /// The client area is the content of the window, excluding the title bar and borders. @@ -305,6 +318,7 @@ impl Window { self.window.get_inner_size() } + /// Returns the size in pixels of the client area of the window. /// /// The client area is the content of the window, excluding the title bar and borders. -- cgit v1.2.3