aboutsummaryrefslogtreecommitdiff
path: root/rendy-memory/src/lib.rs
blob: a0653ee2b12508dc8d7d0b99217a5200a90b4f7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//! GPU memory management
//!

#![warn(
    missing_debug_implementations,
    missing_copy_implementations,
    missing_docs,
    trivial_casts,
    trivial_numeric_casts,
    unused_extern_crates,
    unused_import_braces,
    unused_qualifications
)]
mod allocator;
mod block;
mod heaps;
mod mapping;
mod memory;
mod usage;
mod util;
mod utilization;

pub use crate::{
    allocator::*,
    block::Block,
    heaps::{Heaps, HeapsConfig, HeapsError, MemoryBlock},
    mapping::{write::Write, Coherent, MappedRange, MaybeCoherent, NonCoherent},
    memory::Memory,
    usage::*,
    utilization::*,
};