-
-
Save LaylBongers/7868a7ef417cda9c63933c805a3103c2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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