1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![allow(
    non_snake_case,
    non_upper_case_globals,
    non_camel_case_types,
    unused_must_use,
    unused_mut,
    unused_macros,
    unused_imports,
    dead_code
)]

/// Some useful structs and functions.
#[cfg(feature="support")]
pub mod support;

#[cfg(any(feature="opengl"))]
pub mod graphics;

#[cfg(all(target_os="windows",feature="windowing"))]
pub mod windows;

#[cfg(any(feature="opengl",feature="windowing"))]
pub use image;