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

#424 in Memory management

Download history 48983/week @ 2024-01-17 45059/week @ 2024-01-24 46726/week @ 2024-01-31 48939/week @ 2024-02-07 50489/week @ 2024-02-14 51328/week @ 2024-02-21 50155/week @ 2024-02-28 48443/week @ 2024-03-06 45404/week @ 2024-03-13 53791/week @ 2024-03-20 56048/week @ 2024-03-27 45010/week @ 2024-04-03 45577/week @ 2024-04-10 50786/week @ 2024-04-17 47247/week @ 2024-04-24 41376/week @ 2024-05-01

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

~110KB