engine/include/vulkan_allocator.h

12 lines
206 B
C
Raw Normal View History

#pragma once
2023-03-13 17:35:22 +00:00
#include <vk_mem_alloc.h>
#include "device.h"
namespace engine {
VmaAllocator createAllocator(VkInstance instance, const Device& device);
void destroyAllocator(VmaAllocator allocator);
2023-03-13 17:35:22 +00:00
}