3 unstable releases

0.2.0 Apr 9, 2024
0.1.2 Sep 25, 2023
0.1.1 Jan 23, 2021
0.1.0 Jan 23, 2021

#490 in Memory management

Download history 53226/week @ 2024-08-19 63704/week @ 2024-08-26 60189/week @ 2024-09-02 58221/week @ 2024-09-09 58041/week @ 2024-09-16 62013/week @ 2024-09-23 59499/week @ 2024-09-30 63898/week @ 2024-10-07 63461/week @ 2024-10-14 57108/week @ 2024-10-21 63861/week @ 2024-10-28 63796/week @ 2024-11-04 61064/week @ 2024-11-11 64946/week @ 2024-11-18 67028/week @ 2024-11-25 65583/week @ 2024-12-02

263,667 downloads per month
Used in 1,748 crates (4 directly)

MIT/Apache

6KB
78 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

~105KB