1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! Provides integration with the [`distill`](https://github.com/amethyst/distill) asset
//! pipeline

pub mod assets;
pub use assets::*;

/// Contains some distill-related helpers. They are optional and end-users can provide their own.
pub mod distill_impl;

pub mod buffer_upload;
pub mod image_upload;

pub mod gpu_image_data;
pub use gpu_image_data::GpuImageData;
pub use gpu_image_data::GpuImageDataColorSpace;
pub use gpu_image_data::GpuImageDataLayer;
pub use gpu_image_data::GpuImageDataMipLevel;

pub mod push_buffer;

mod resource_loader;
pub use resource_loader::ResourceLoader;

pub use distill;