stop hardcoding vulkan vertex layouts

This commit is contained in:
niki
2022-06-16 01:16:23 +02:00
parent 2bf7c35220
commit b5ba2b65b5
5 changed files with 284 additions and 58 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef LOVE_GRAPHICS_VULKAN_VULKAN_H
#define LOVE_GRAPHICS_VULKAN_VULKAN_H
#include "Vulkan.h"
#include "Graphics.h"
namespace love {
namespace graphics {
namespace vulkan {
class Vulkan {
public:
static VkFormat getVulkanVertexFormat(DataFormat format);
};
}
}
}
#endif