1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#[cfg(all(
    target_arch = "wasm32",
    not(any(target_os = "emscripten", feature = "webgl"))
))]
mod web;
#[cfg(all(
    target_arch = "wasm32",
    not(any(target_os = "emscripten", feature = "webgl"))
))]
pub(crate) use web::Context;

#[cfg(any(
    not(target_arch = "wasm32"),
    target_os = "emscripten",
    feature = "webgl"
))]
mod direct;
#[cfg(any(
    not(target_arch = "wasm32"),
    target_os = "emscripten",
    feature = "webgl"
))]
pub(crate) use direct::Context;