aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.rs
diff options
context:
space:
mode:
authorPierre Krieger <pierre.krieger1708@gmail.com>2015-04-19 09:52:03 +0200
committerPierre Krieger <pierre.krieger1708@gmail.com>2015-04-19 09:52:03 +0200
commit1ec168fed06893e2d8f5c7fc4355103ab979edf6 (patch)
tree92aeff21b232de923333a30c8844f28deb71492a /src/window.rs
parent70d36a3d3d6afba3e89faf4d3979118f9c076fe9 (diff)
downloadglutin-1ec168fed06893e2d8f5c7fc4355103ab979edf6.tar.gz
glutin-1ec168fed06893e2d8f5c7fc4355103ab979edf6.zip
Remove functions marked as #[deprecated]
Diffstat (limited to 'src/window.rs')
-rw-r--r--src/window.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/window.rs b/src/window.rs
index bf040b0..8567313 100644
--- a/src/window.rs
+++ b/src/window.rs
@@ -59,13 +59,6 @@ impl<'a> WindowBuilder<'a> {
self
}
- /// THIS FUNCTION IS DEPRECATED
- #[deprecated = "Use with_gl instead"]
- pub fn with_gl_version(mut self, version: (u32, u32)) -> WindowBuilder<'a> {
- self.attribs.gl_version = GlRequest::Specific(::Api::OpenGl, (version.0 as u8, version.1 as u8));
- self
- }
-
/// Sets how the backend should choose the OpenGL API and version.
pub fn with_gl(mut self, request: GlRequest) -> WindowBuilder<'a> {
self.attribs.gl_version = request;
@@ -216,13 +209,6 @@ impl Window {
self.window.is_closed()
}
- /// Returns true if the window has previously been closed by the user.
- #[inline]
- #[deprecated = "Use is_closed instead"]
- pub fn should_close(&self) -> bool {
- self.is_closed()
- }
-
/// Modifies the title of the window.
///
/// This is a no-op if the window has already been closed.