diff options
| -rw-r--r-- | demos/vulkaninfo.c | 9 | ||||
| -rw-r--r-- | include/vulkan.h | 11 |
2 files changed, 7 insertions, 13 deletions
diff --git a/demos/vulkaninfo.c b/demos/vulkaninfo.c index f07ebfa5..d7516490 100644 --- a/demos/vulkaninfo.c +++ b/demos/vulkaninfo.c @@ -767,12 +767,9 @@ static void app_gpu_dump_features(const struct app_gpu *gpu) printf("\ttextureCompressionBC = %u\n", features->textureCompressionBC ); printf("\tocclusionQueryNonConservative = %u\n", features->occlusionQueryNonConservative ); printf("\tpipelineStatisticsQuery = %u\n", features->pipelineStatisticsQuery ); - printf("\tvertexSideEffects = %u\n", features->vertexSideEffects ); - printf("\ttessellationSideEffects = %u\n", features->tessellationSideEffects ); - printf("\tgeometrySideEffects = %u\n", features->geometrySideEffects ); - printf("\tfragmentSideEffects = %u\n", features->fragmentSideEffects ); - printf("\tshaderTessellationPointSize = %u\n", features->shaderTessellationPointSize ); - printf("\tshaderGeometryPointSize = %u\n", features->shaderGeometryPointSize ); + printf("\tvertexSideEffects = %u\n", features->vertexPipelineStoresAndAtomics ); + printf("\ttessellationSideEffects = %u\n", features->fragmentStoresAndAtomics ); + printf("\tgeometrySideEffects = %u\n", features->shaderTessellationAndGeometryPointSize ); printf("\tshaderImageGatherExtended = %u\n", features->shaderImageGatherExtended ); printf("\tshaderStorageImageExtendedFormats = %u\n", features->shaderStorageImageExtendedFormats ); printf("\tshaderStorageImageMultisample = %u\n", features->shaderStorageImageMultisample ); diff --git a/include/vulkan.h b/include/vulkan.h index c2fcfb2f..fa66c8e8 100644 --- a/include/vulkan.h +++ b/include/vulkan.h @@ -41,7 +41,7 @@ extern "C" { ((major << 22) | (minor << 12) | patch) // Vulkan API version supported by this file -#define VK_API_VERSION VK_MAKE_VERSION(0, 190, 0) +#define VK_API_VERSION VK_MAKE_VERSION(0, 191, 0) #define VK_NULL_HANDLE 0 @@ -1138,12 +1138,9 @@ typedef struct { VkBool32 textureCompressionBC; VkBool32 occlusionQueryNonConservative; VkBool32 pipelineStatisticsQuery; - VkBool32 vertexSideEffects; - VkBool32 tessellationSideEffects; - VkBool32 geometrySideEffects; - VkBool32 fragmentSideEffects; - VkBool32 shaderTessellationPointSize; - VkBool32 shaderGeometryPointSize; + VkBool32 vertexPipelineStoresAndAtomics; + VkBool32 fragmentStoresAndAtomics; + VkBool32 shaderTessellationAndGeometryPointSize; VkBool32 shaderImageGatherExtended; VkBool32 shaderStorageImageExtendedFormats; VkBool32 shaderStorageImageMultisample; |
