#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

#27 in Graphics APIs

Download history 45739/week @ 2024-01-29 52050/week @ 2024-02-05 49513/week @ 2024-02-12 52472/week @ 2024-02-19 52114/week @ 2024-02-26 49265/week @ 2024-03-04 48039/week @ 2024-03-11 50417/week @ 2024-03-18 56788/week @ 2024-03-25 52656/week @ 2024-04-01 42926/week @ 2024-04-08 52314/week @ 2024-04-15 49297/week @ 2024-04-22 52388/week @ 2024-04-29 43597/week @ 2024-05-06 40669/week @ 2024-05-13

191,374 downloads per month
Used in 1,325 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

~1.6–2.1MB
~31K SLoC