1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#![allow(
    non_snake_case,
    non_upper_case_globals,
    non_camel_case_types,
    unused_must_use,
    unused_mut,
    unused_macros,
    unused_imports,
    dead_code
)]
// Enables docs nightly features
#![cfg_attr(feature="nightly-docs",feature(doc_cfg))]

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

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

#[cfg(any(target_os="windows"))]
#[cfg_attr(feature="nightly-docs",doc(cfg(target_os="windows")))]
pub mod windows;

pub use image;