engine/include/vulkan_allocator.h

15 lines
233 B
C
Raw Permalink Normal View History

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