Create reorganization

This commit is contained in:
Pierre Krieger 2015-04-24 09:51:23 +02:00
parent c1af76550f
commit 3ad7f9a584
27 changed files with 42 additions and 15 deletions

View file

@ -1,3 +1,5 @@
#![cfg(target_os = "android")]
extern crate android_glue; extern crate android_glue;
use libc; use libc;

View file

@ -1,3 +1,5 @@
#![cfg(target_os = "macos")]
#[cfg(feature = "headless")] #[cfg(feature = "headless")]
pub use self::headless::HeadlessContext; pub use self::headless::HeadlessContext;

4
src/api/mod.rs Normal file
View file

@ -0,0 +1,4 @@
pub mod android;
pub mod cocoa;
pub mod win32;
pub mod x11;

View file

@ -1,3 +1,5 @@
#![cfg(target_os = "windows")]
use std::sync::atomic::AtomicBool; use std::sync::atomic::AtomicBool;
use std::mem; use std::mem;
use std::ptr; use std::ptr;

View file

@ -1,3 +1,5 @@
#![cfg(target_os = "linux")]
#[cfg(feature = "headless")] #[cfg(feature = "headless")]
pub use self::headless::HeadlessContext; pub use self::headless::HeadlessContext;

View file

@ -61,22 +61,8 @@ pub use window::{AvailableMonitorsIter, MonitorID, get_available_monitors, get_p
#[cfg(feature = "window")] #[cfg(feature = "window")]
pub use native_monitor::NativeMonitorId; pub use native_monitor::NativeMonitorId;
#[cfg(all(not(target_os = "windows"), not(target_os = "linux"), not(target_os = "macos"), not(target_os = "android")))] mod api;
use this_platform_is_not_supported;
#[cfg(target_os = "windows")]
#[path="win32/mod.rs"]
mod platform; mod platform;
#[cfg(target_os = "linux")]
#[path="x11/mod.rs"]
mod platform;
#[cfg(target_os = "macos")]
#[path="cocoa/mod.rs"]
mod platform;
#[cfg(target_os = "android")]
#[path="android/mod.rs"]
mod platform;
mod events; mod events;
#[cfg(feature = "headless")] #[cfg(feature = "headless")]
mod headless; mod headless;

View file

@ -0,0 +1,3 @@
#![cfg(target_os = "android")]
pub use api::android::*;

View file

@ -0,0 +1,3 @@
#![cfg(target_os = "linux")]
pub use api::x11::*;

View file

@ -0,0 +1,3 @@
#![cfg(target_os = "macos")]
pub use api::cocoa::*;

17
src/platform/mod.rs Normal file
View file

@ -0,0 +1,17 @@
pub use self::platform::*;
#[cfg(target_os = "windows")]
#[path="windows/mod.rs"]
mod platform;
#[cfg(target_os = "linux")]
#[path="linux/mod.rs"]
mod platform;
#[cfg(target_os = "macos")]
#[path="macos/mod.rs"]
mod platform;
#[cfg(target_os = "android")]
#[path="android/mod.rs"]
mod platform;
#[cfg(all(not(target_os = "windows"), not(target_os = "linux"), not(target_os = "macos"), not(target_os = "android")))]
use this_platform_is_not_supported;

View file

@ -0,0 +1,3 @@
#![cfg(target_os = "windows")]
pub use api::win32::*;