diff options
author | Pierre Krieger <pierre.krieger1708@gmail.com> | 2015-10-03 10:33:37 +0200 |
---|---|---|
committer | Pierre Krieger <pierre.krieger1708@gmail.com> | 2015-10-03 10:33:37 +0200 |
commit | 7a625ef3d8b7fec62222ad6e45f9e1560732ae7a (patch) | |
tree | d3d37fe03b9a2d49567f797f97925206ed3a172e /src/api/cocoa | |
parent | c8fd077e17f7a7147d6877f2343c82790b187bd2 (diff) | |
download | glutin-7a625ef3d8b7fec62222ad6e45f9e1560732ae7a.tar.gz glutin-7a625ef3d8b7fec62222ad6e45f9e1560732ae7a.zip |
Remove the window feature entirely
Diffstat (limited to 'src/api/cocoa')
-rw-r--r-- | src/api/cocoa/mod.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/api/cocoa/mod.rs b/src/api/cocoa/mod.rs index 5a2f004..2b4b5e5 100644 --- a/src/api/cocoa/mod.rs +++ b/src/api/cocoa/mod.rs @@ -185,12 +185,9 @@ pub struct Window { delegate: WindowDelegate, } -#[cfg(feature = "window")] unsafe impl Send for Window {} -#[cfg(feature = "window")] unsafe impl Sync for Window {} -#[cfg(feature = "window")] #[derive(Clone)] pub struct WindowProxy; @@ -264,7 +261,6 @@ impl<'a> Iterator for WaitEventsIterator<'a> { } impl Window { - #[cfg(feature = "window")] pub fn new(win_attribs: &WindowAttributes, pf_reqs: &PixelFormatRequirements, opengl: &GlAttributes<&Window>) -> Result<Window, CreationError> { |