framealloc 0.11.1

Intent-aware, thread-smart memory allocation for Rust game engines
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! CPU-GPU Memory Coordination
//!
//! **Requires both `gpu` and `coordinator` features.**
//! This module bridges the CPU and GPU allocators.

pub mod unified_allocator;
pub mod sync;
pub mod budget;

pub use unified_allocator::UnifiedAllocator;
pub use sync::{CpuGpuBarrier, TransferDirection};
pub use budget::UnifiedBudgetManager;