preparing resume PrimitiveData

This commit is contained in:
2024-05-16 20:58:44 +08:00
parent f31437bf67
commit 3af753ee36
4 changed files with 24 additions and 17 deletions

View File

@@ -306,6 +306,19 @@ namespace
constexpr size_t VK_PHYSICAL_DEVICE_TYPE_RANGE_SIZE=VK_PHYSICAL_DEVICE_TYPE_END_RANGE-VK_PHYSICAL_DEVICE_TYPE_BEGIN_RANGE+1;
#endif//VK_PHYSICAL_DEVICE_TYPE_RANGE_SIZE
namespace
{
struct VulkanDeviceVendor
{
uint32_t id;
const char *name;
};
//constexpr const VulkanDeviceVendor vulkan_vendor[]=
//{
//};
}
void DebugOut(const VkPhysicalDeviceProperties &pdp)
{
constexpr char DeviceTypeString[VK_PHYSICAL_DEVICE_TYPE_RANGE_SIZE][16]=