Skip to content

Instantly share code, notes, and snippets.

@LaylBongers
Created March 24, 2019 19:41
Show Gist options
  • Save LaylBongers/7868a7ef417cda9c63933c805a3103c2 to your computer and use it in GitHub Desktop.
Save LaylBongers/7868a7ef417cda9c63933c805a3103c2 to your computer and use it in GitHub Desktop.
let index_buffer_data = [0u32, 1, 2];
// Allocate the index buffer
let index_buffer_info = vk::BufferCreateInfo::builder()
.size(size_of_val(&index_buffer_data) as u64)
.usage(vk::BufferUsageFlags::TRANSFER_SRC)
.sharing_mode(vk::SharingMode::EXCLUSIVE);
let create_info = AllocationCreateInfo {
usage: MemoryUsage::CpuOnly,
flags: AllocationCreateFlags::MAPPED,
..Default::default()
};
let (index_buffer, index_allocation, index_allocation_info) = allocator
.create_buffer(&index_buffer_info, &create_info).unwrap();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment