#descriptor-set

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

#1 in #descriptor-set

Download history 47395/week @ 2024-06-20 52121/week @ 2024-06-27 58148/week @ 2024-07-04 62098/week @ 2024-07-11 61237/week @ 2024-07-18 59829/week @ 2024-07-25 57852/week @ 2024-08-01 69992/week @ 2024-08-08 58058/week @ 2024-08-15 60975/week @ 2024-08-22 61341/week @ 2024-08-29 63077/week @ 2024-09-05 59048/week @ 2024-09-12 59970/week @ 2024-09-19 63932/week @ 2024-09-26 53500/week @ 2024-10-03

245,098 downloads per month
Used in 1,586 crates (3 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
~32K SLoC