Skip to content

πŸŒ‹ A very lightweight wrapper around the Vulkan Memory Allocator πŸ¦€

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

ProjectKML/vk-mem-alloc-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

29 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸŒ‹ vk-mem-alloc-rs

A very lightweight wrapper around the Vulkan Memory Allocator πŸ¦€

crates license vma dependency-status

[dependencies]
vk-mem-alloc = "0.2.0"

Simple Vulkan Memory Allocator example

// Create the allocator
let allocator = vk_mem_alloc::create_allocator(&instance, physical_device, &device, None).unwrap();

let buffer_create_info = vk::BufferCreateInfo {
    size,
    usage: vk::BufferUsageFlags::STORAGE_BUFFER,
    ..Default::default()
};

let allocation_create_info = vk_mem_alloc::AllocationCreateInfo {
    usage: vk_mem_alloc::MemoryUsage::AUTO_PREFER_DEVICE,
    ..Default::default()
};

// Create the buffer
let (buffer, allocation, allocation_info) = vk_mem_alloc::create_buffer(allocator, &buffer_create_info, &allocation_create_info).unwrap();

....

// Destroy the buffer
vk_mem_alloc::destroy_buffer(allocator, buffer, allocation);

// Destroy the allocator
vk_mem_alloc::destroy_allocator(allocator);

Credits

  • AMD for creating the Vulkan Memory Allocator.
  • The Ash community for creating such an awesome rust wrapper around Vulkan.
  • Graham Wihlidal for creating vk-mem, my buildscript is based on its build script.

About

πŸŒ‹ A very lightweight wrapper around the Vulkan Memory Allocator πŸ¦€

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published