1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#[cfg(target_arch = "wasm32")]
mod web;
#[cfg(target_arch = "wasm32")]
pub(crate) use web::Context;

#[cfg(not(target_arch = "wasm32"))]
mod direct;

#[cfg(not(target_arch = "wasm32"))]
pub(crate) use direct::Context;

#[cfg(not(target_arch = "wasm32"))]
mod native_gpu_future;