#vulkan #gpu #no-std #vulkan-api

no-std gpu-descriptor

Implementation agnostic descriptor allocator for Vulkan like APIs

9 releases

0.3.1 Dec 19, 2024
0.3.0 Apr 9, 2024
0.2.4 Sep 25, 2023
0.2.3 Aug 11, 2022
0.1.0 Jan 23, 2021

#20 in Graphics APIs

Download history 69851/week @ 2024-12-05 68601/week @ 2024-12-12 63285/week @ 2024-12-19 57330/week @ 2024-12-26 73911/week @ 2025-01-02 82786/week @ 2025-01-09 85011/week @ 2025-01-16 83023/week @ 2025-01-23 94618/week @ 2025-01-30 104442/week @ 2025-02-06 88453/week @ 2025-02-13 117588/week @ 2025-02-20 108159/week @ 2025-02-27 120142/week @ 2025-03-06 125861/week @ 2025-03-13 100719/week @ 2025-03-20

474,181 downloads per month
Used in 1,973 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

~0.6–1MB
~16K SLoC