Skip to main content

steamengine_renderer_util/
lib.rs

1/// Module with camea utils
2/// Contrais implementations of trait camera
3/// Enable it with feature "camera"
4#[cfg(feature = "camera")]
5pub mod camera;
6
7/// Module with resource managers
8/// Load resources of diferent types in memory
9/// Enable it with feature "resource-manager"
10#[cfg(feature = "resource-manager")]
11pub mod resources;
12
13/// Module with simple buffers
14/// A way to use buffers more easy
15/// Enable it with feature "simple-buffers"
16#[cfg(feature = "simple-buffers")]
17pub mod simple_buffer;
18
19/// Module with bindings
20/// Group a bind_group and layout into a single structure
21/// Enable it with feature "simple-bindings"
22#[cfg(feature = "simple-bindings")]
23pub mod bindings;
24
25/// Module with depth-textures
26/// Create depth textures easily
27/// Enable it with feature "depth-textures"
28#[cfg(feature = "depth-textures")]
29pub mod depth_texture;
30
31/// Module with errors
32pub mod errors;