Initial commit

This commit is contained in:
2026-01-23 22:15:36 +01:00
commit ca60108606
167 changed files with 5311 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#define VMA_STATIC_VULKAN_FUNCTIONS 0
#define VMA_IMPLEMENTATION
#include <vk_mem_alloc.h>
int main()
{
// Load function pointers...
// vmaVmaVulkanFunctions vulkanFunctions{};
// vulkavulkanFunctions.vkAllocateMemory = ... ;
// ...
VmaAllocatorCreateInfo allocatorInfo{}; (void)allocatorInfo;
// allocatorInfo.instance = instance;
// allocatorInfo.physicalDevice = physicalDevice;
// allocatorInfo.device = device;
// allocatorInfo.pVulkanFunctions = &vulkanFunctions;
VmaAllocator allocator; (void)allocator;
// vmaCreateAllocator(&allocatorInfo, &allocator);
}