diff options
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | Cargo.toml | 1 | ||||
-rw-r--r-- | appveyor.yml | 3 | ||||
-rw-r--r-- | src/lib.rs | 2 |
4 files changed, 1 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index c8c0ae3..1551440 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,6 @@ env: script: - cargo build --verbose - cargo test --verbose - - cargo test --verbose --features "headless" --no-default-features os: - linux @@ -13,7 +13,6 @@ build = "build.rs" [features] default = ["window"] window = [] -headless = [] [dependencies] gl_common = "*" diff --git a/appveyor.yml b/appveyor.yml index b7a558c..cc2c0d8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,5 +9,4 @@ install: build: false test_script: - - cargo test --verbose --no-default-features --features "window" - - cargo test --verbose --no-default-features --features "headless" + - cargo test --verbose @@ -53,7 +53,6 @@ extern crate glutin_core_graphics as core_graphics; extern crate x11; pub use events::*; -#[cfg(feature = "headless")] pub use headless::{HeadlessRendererBuilder, HeadlessContext}; #[cfg(feature = "window")] pub use window::{WindowBuilder, Window, WindowProxy, PollEventsIterator, WaitEventsIterator}; @@ -65,7 +64,6 @@ pub use native_monitor::NativeMonitorId; mod api; mod platform; mod events; -#[cfg(feature = "headless")] mod headless; #[cfg(feature = "window")] mod window; |