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

#628 in Graphics APIs

Download history 52032/week @ 2024-12-21 56884/week @ 2024-12-28 74128/week @ 2025-01-04 78790/week @ 2025-01-11 78125/week @ 2025-01-18 79697/week @ 2025-01-25 95911/week @ 2025-02-01 93532/week @ 2025-02-08 90111/week @ 2025-02-15 110093/week @ 2025-02-22 112290/week @ 2025-03-01 116699/week @ 2025-03-08 121201/week @ 2025-03-15 111061/week @ 2025-03-22 101101/week @ 2025-03-29 103739/week @ 2025-04-05

454,770 downloads per month
Used in 1,982 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