gfx-descriptor 0.2.0

gfx-hal descriptor allocator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! GPU descriptor allocator
//!

#![warn(
    missing_docs,
    trivial_casts,
    trivial_numeric_casts,
    unused_extern_crates,
    unused_import_braces,
    unused_qualifications
)]
#[allow(clippy::new_without_default)]
mod allocator;
mod counts;

pub use crate::{allocator::*, counts::*};