aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorDaggerbot <daggerbot@gmail.com>2015-04-09 10:38:58 +0000
committerDaggerbot <daggerbot@gmail.com>2015-04-09 10:38:58 +0000
commit2d20050b892f37bb7f7c02aa4408b8627649f8e1 (patch)
treeb109f3d2782da9b044ceae455f90f526ab1f0513 /src/lib.rs
parent70d36a3d3d6afba3e89faf4d3979118f9c076fe9 (diff)
downloadglutin-2d20050b892f37bb7f7c02aa4408b8627649f8e1.tar.gz
glutin-2d20050b892f37bb7f7c02aa4408b8627649f8e1.zip
Using `x11-rs` and `osmesa-rs`.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d830f58..9173735 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -46,6 +46,10 @@ extern crate cocoa;
extern crate core_foundation;
#[cfg(target_os = "macos")]
extern crate glutin_core_graphics as core_graphics;
+#[cfg(target_os = "linux")]
+extern crate osmesa_sys;
+#[cfg(target_os = "linux")]
+extern crate x11;
pub use events::*;
#[cfg(feature = "headless")]