aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorPierre Krieger <pierre.krieger1708@gmail.com>2015-10-03 10:33:37 +0200
committerPierre Krieger <pierre.krieger1708@gmail.com>2015-10-03 10:33:37 +0200
commit7a625ef3d8b7fec62222ad6e45f9e1560732ae7a (patch)
treed3d37fe03b9a2d49567f797f97925206ed3a172e /src/lib.rs
parentc8fd077e17f7a7147d6877f2343c82790b187bd2 (diff)
downloadglutin-7a625ef3d8b7fec62222ad6e45f9e1560732ae7a.tar.gz
glutin-7a625ef3d8b7fec62222ad6e45f9e1560732ae7a.zip
Remove the window feature entirely
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib.rs b/src/lib.rs
index a9c9bef..b62c4a0 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -60,11 +60,8 @@ extern crate x11_dl;
pub use events::*;
pub use headless::{HeadlessRendererBuilder, HeadlessContext};
-#[cfg(feature = "window")]
pub use window::{WindowBuilder, WindowProxy, PollEventsIterator, WaitEventsIterator};
-#[cfg(feature = "window")]
pub use window::{AvailableMonitorsIter, MonitorId, get_available_monitors, get_primary_monitor};
-#[cfg(feature = "window")]
pub use native_monitor::NativeMonitorId;
use std::io;
@@ -75,7 +72,6 @@ mod api;
mod platform;
mod events;
mod headless;
-#[cfg(feature = "window")]
mod window;
pub mod os;