mirror of
https://github.com/love2d/love.git
synced 2026-08-16 16:20:42 +02:00
15 lines
300 B
C
15 lines
300 B
C
#pragma once
|
|
|
|
#include "common/config.h"
|
|
|
|
#ifdef LOVE_ANDROID
|
|
#include "volk.h"
|
|
#define VMA_STATIC_VULKAN_FUNCTIONS 0
|
|
#define VMA_DYNAMIC_VULKAN_FUNCTIONS 0
|
|
#else
|
|
#include <vulkan/vulkan.h>
|
|
#define VMA_STATIC_VULKAN_FUNCTIONS 0
|
|
#define VMA_DYNAMIC_VULKAN_FUNCTIONS 1
|
|
#endif
|
|
#include "vk_mem_alloc.h"
|