#vulkan #allocation #gpu

no-std gpu-descriptor-types

Core types of gpu-descriptor crate

3 unstable releases

0.2.0 Apr 9, 2024
0.1.2 Sep 25, 2023
0.1.1 Jan 23, 2021
0.1.0 Jan 23, 2021

#788 in Graphics APIs

Download history 176162/week @ 2025-10-18 170092/week @ 2025-10-25 155447/week @ 2025-11-01 150777/week @ 2025-11-08 163690/week @ 2025-11-15 167480/week @ 2025-11-22 183010/week @ 2025-11-29 197702/week @ 2025-12-06 209626/week @ 2025-12-13 158658/week @ 2025-12-20 137766/week @ 2025-12-27 210248/week @ 2026-01-03 229302/week @ 2026-01-10 227006/week @ 2026-01-17 227845/week @ 2026-01-24 292945/week @ 2026-01-31

1,013,786 downloads per month
Used in 2,454 crates (4 directly)

MIT/Apache

6KB
78 lines

gpu-descriptor

crates docs actions MIT/Apache loc

Library for Vulkan-like APIs to allocated descriptor sets from descriptor pools fast, with least overhead and zero fragmentation.

Straightforward usage:

use gpu_descriptor::DescriptorAllocator;

let mut allocator = DescriptorAllocator::new(max_update_after_bind_descriptors_in_all_pools); // Limit as dictated by API for selected hardware

let result = allocator.allocate(
    device, // Implementation of `gpu_descriptor::DescriptorDevice`. Comes from plugins.
    layout, // Descriptor set layout recognized by device's type.
    flags,  // Flags specified when layout was created.
    layout_descriptor_count, // Descriptors count in the layout.
    count, // count of sets to allocated.
);

License

Licensed under either of

at your option.

Contributions

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Support me on Patreon

Support me on Patreon

Dependencies

~95KB