X-Git-Url: https://eleni.mutantstargoat.com/git/?p=demo;a=blobdiff_plain;f=src%2Fvulkan%2Fallocator.h;fp=src%2Fvulkan%2Fallocator.h;h=4f4fd5314b368d618efbe295b78064f40bec46c4;hp=83ccee9b6969baa58d7fe9440c6c7326a2bcb13b;hb=c3d7c1b7f8a7f4bcfc7661b6baf166ce0648083a;hpb=22347bb45e427ea763295d77da0de0d2ef9c2395 diff --git a/src/vulkan/allocator.h b/src/vulkan/allocator.h index 83ccee9..4f4fd53 100644 --- a/src/vulkan/allocator.h +++ b/src/vulkan/allocator.h @@ -12,7 +12,6 @@ struct DevMemBlock { bool vku_allocate(int size, DevMemBlock *block); void vku_free(VkDeviceMemory gpu_memory); -bool vku_map_memory(VkDeviceMemory gpu_mem, int size, void *data); -void vku_unmap_memory(VkDeviceMemory gpu_mem); +bool vku_write_memory(VkDeviceMemory gpu_mem, int size, void *data); #endif // ALLOCATOR_H_