vk/vulkan.h: Move VkFormatProperties

This commit is contained in:
Jason Ekstrand 2015-07-08 11:16:45 -07:00
parent 52940e8fcf
commit 7598329774

View file

@ -1156,6 +1156,11 @@ typedef struct {
const char*const* ppEnabledExtensionNames;
} VkInstanceCreateInfo;
typedef struct {
VkFormatFeatureFlags linearTilingFeatures;
VkFormatFeatureFlags optimalTilingFeatures;
} VkFormatProperties;
typedef struct {
uint32_t apiVersion;
uint32_t driverVersion;
@ -1815,11 +1820,6 @@ typedef struct {
VkMemoryInputFlags inputMask;
} VkMemoryBarrier;
typedef struct {
VkFormatFeatureFlags linearTilingFeatures;
VkFormatFeatureFlags optimalTilingFeatures;
} VkFormatProperties;
typedef struct {
VkStructureType sType;
const void* pNext;