#descriptor-set #vulkan #gpu #no-std

no-std gpu-descriptor

Implementation agnostic descriptor allocator for Vulkan like APIs

8 releases

0.3.0 Apr 9, 2024
0.2.4 Sep 25, 2023
0.2.3 Aug 11, 2022
0.2.2 Nov 17, 2021
0.1.0 Jan 23, 2021

#26 in Graphics APIs

Download history 47787/week @ 2024-01-23 45902/week @ 2024-01-30 51375/week @ 2024-02-06 50417/week @ 2024-02-13 52730/week @ 2024-02-20 51211/week @ 2024-02-27 49887/week @ 2024-03-05 47166/week @ 2024-03-12 52688/week @ 2024-03-19 56707/week @ 2024-03-26 49869/week @ 2024-04-02 44936/week @ 2024-04-09 52478/week @ 2024-04-16 49559/week @ 2024-04-23 51358/week @ 2024-04-30 35498/week @ 2024-05-07

197,705 downloads per month
Used in 1,296 crates (2 directly)

MIT/Apache

34KB
576 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

~2MB
~30K SLoC