no-std gpu-descriptor-types

Core types of gpu-descriptor crate

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
Download history 57753/week @ 2024-07-23 59910/week @ 2024-07-30 61707/week @ 2024-08-06 63414/week @ 2024-08-13 54379/week @ 2024-08-20 62329/week @ 2024-08-27 62142/week @ 2024-09-03 55869/week @ 2024-09-10 58301/week @ 2024-09-17 63174/week @ 2024-09-24 60755/week @ 2024-10-01 62644/week @ 2024-10-08 61960/week @ 2024-10-15 59250/week @ 2024-10-22 64651/week @ 2024-10-29 51656/week @ 2024-11-05

248,564 downloads per month
Used in 1,665 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