rafx-api 0.0.7

Rendering framework built on an extensible asset pipeline
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "rafx-metal")]
pub mod metal;

#[cfg(feature = "rafx-vulkan")]
pub mod vulkan;

#[cfg(any(
    feature = "rafx-empty",
    not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
#[doc(hidden)]
pub mod empty;