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

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

#22 in Graphics APIs

Download history 66631/week @ 2024-11-16 63228/week @ 2024-11-23 75363/week @ 2024-11-30 67606/week @ 2024-12-07 71571/week @ 2024-12-14 57790/week @ 2024-12-21 60618/week @ 2024-12-28 79470/week @ 2025-01-04 85873/week @ 2025-01-11 82928/week @ 2025-01-18 82826/week @ 2025-01-25 101545/week @ 2025-02-01 100048/week @ 2025-02-08 93941/week @ 2025-02-15 114819/week @ 2025-02-22 115266/week @ 2025-03-01

440,548 downloads per month
Used in 1,940 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