mirror of
https://github.com/rust-windowing/winit.git
synced 2026-09-01 06:10:07 -04:00
Remove functions marked as #[deprecated]
This commit is contained in:
@@ -25,13 +25,6 @@ impl HeadlessRendererBuilder {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// THIS FUNCTION IS DEPRECATED
|
|
||||||
#[deprecated = "Use with_gl instead"]
|
|
||||||
pub fn with_gl_version(mut self, version: (u32, u32)) -> HeadlessRendererBuilder {
|
|
||||||
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.
|
/// Sets how the backend should choose the OpenGL API and version.
|
||||||
pub fn with_gl(mut self, request: GlRequest) -> HeadlessRendererBuilder {
|
pub fn with_gl(mut self, request: GlRequest) -> HeadlessRendererBuilder {
|
||||||
self.attribs.gl_version = request;
|
self.attribs.gl_version = request;
|
||||||
|
|||||||
@@ -59,13 +59,6 @@ impl<'a> WindowBuilder<'a> {
|
|||||||
self
|
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.
|
/// Sets how the backend should choose the OpenGL API and version.
|
||||||
pub fn with_gl(mut self, request: GlRequest) -> WindowBuilder<'a> {
|
pub fn with_gl(mut self, request: GlRequest) -> WindowBuilder<'a> {
|
||||||
self.attribs.gl_version = request;
|
self.attribs.gl_version = request;
|
||||||
@@ -216,13 +209,6 @@ impl Window {
|
|||||||
self.window.is_closed()
|
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.
|
/// Modifies the title of the window.
|
||||||
///
|
///
|
||||||
/// This is a no-op if the window has already been closed.
|
/// This is a no-op if the window has already been closed.
|
||||||
|
|||||||
Reference in New Issue
Block a user