gpu-allocator icon indicating copy to clipboard operation
gpu-allocator copied to clipboard

🦀 GPU memory allocator for Vulkan, DirectX 12 and Metal. Written in pure Rust

Results 65 gpu-allocator issues
Sort by recently updated
recently updated
newest added

Updates the requirements on [ash-window](https://github.com/MaikKlein/ash) to permit the latest version. Commits 2907241 Release ash-window 0.11.0 7315d99 ash-window: Upgrade to raw-window-handle 0.4.2 (#505) 9f18e51 ash-window: Upgrade winit example to 0.26 f5e1f93...

dependencies
rust

Updates the requirements on [winit](https://github.com/rust-windowing/winit) to permit the latest version. Release notes Sourced from winit's releases. Winit Version v0.27.1 The minimum supported Rust version was lowered to 1.57.0 and now...

dependencies
rust

Updates the requirements on [raw-window-handle](https://github.com/rust-windowing/raw-window-handle) to permit the latest version. Changelog Sourced from raw-window-handle's changelog. 0.5.0 (2022-07-14) Breaking: The RawWindowHandle variants were split into RawDisplayHandle and RawWindowHandle. The X11 screen...

dependencies
rust

These rapid bumps are a bit unfortunate, and we're still early in the adoption/improvement phase for windows-rs. See also https://github.com/microsoft/windows-rs/issues/1720.

Updates the requirements on [windows](https://github.com/microsoft/windows-rs) to permit the latest version. Release notes Sourced from windows's releases. 0.39.0 This release includes improves to string handling and parameter passing to both improve...

dependencies
rust

Is there support for defragmentation planned? Because this would be useful for streaming data I think.

Hello, First of all, thank you for the excellent library. The AllocatorVisualizer struct (both DX12 and Vulkan) are created using the `new()` function, which notably has no arguments. One might...

Hi, I seem to have run up against a wall with how the allocator destroys memory blocks. I have a `GfxCtx` struct that holds basically all of my Vulkan state....

Hi. Maybe I'm wrong but when I look into the `Allocator` implementation I see the following in the `Allocator::allocate` method: - If `MemoryLocation::CpuToGpu` was specified the function tries to find...

So I'm not entirely sure why this warning exists: `15:04:03 [WARN] There is a memory type that is host visible, but not host coherent. It's time to upgrade our memory...