1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! # GPU
//! An ergonomic GPU API.

//TODO: Define a new Error type and get rid of expect/unwrap calls.
//FIXME: We need to type the same documentation for every Context implementation. Maybe we should
//create a documented trait for it and implement the trait for each backend.
#![warn(missing_docs)]
#![warn(trivial_casts)]
#![warn(trivial_numeric_casts)]
#![warn(unused_import_braces)]
#![warn(unused_qualifications)]

mod prelude;

mod context;
mod data;
mod code;

pub use data::*;
pub use code::*;
pub use context::*;