diff options
| author | Jon Ashburn <jon@lunarg.com> | 2015-12-29 14:57:48 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2015-12-29 14:57:48 -0700 |
| commit | fd18d28f99c3b2b8f788a840522c4a9eab03057e (patch) | |
| tree | 211cae150a68ea6ec2d43d1ba934399da9b90230 | |
| parent | 14fd9b8284ef809189c4ff7558637d79061924ae (diff) | |
| download | usermoji-fd18d28f99c3b2b8f788a840522c4a9eab03057e.tar.xz | |
misc: Bump header to 212.1
Adds rest of version 212 changes (timestamp in DeviceLimits) that wasn't
in the 217 WSI header updates.
| -rw-r--r-- | demos/vulkaninfo.c | 1 | ||||
| -rw-r--r-- | include/vulkan/vulkan.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/demos/vulkaninfo.c b/demos/vulkaninfo.c index 96ca6154..700ebe79 100644 --- a/demos/vulkaninfo.c +++ b/demos/vulkaninfo.c @@ -997,6 +997,7 @@ static void app_dump_limits(const VkPhysicalDeviceLimits *limits) printf("\t\tsampledImageIntegerSampleCounts = 0x%" PRIxLEAST32 "\n", limits->sampledImageIntegerSampleCounts ); printf("\t\tstorageImageSampleCounts = 0x%" PRIxLEAST32 "\n", limits->storageImageSampleCounts ); printf("\t\tmaxSampleMaskWords = 0x%" PRIxLEAST32 "\n", limits->maxSampleMaskWords ); + printf("\t\ttimestampComputeAndGraphics = %u\n", limits->timestampComputeAndGraphics ); printf("\t\ttimestampPeriod = 0x%f\n", limits->timestampPeriod ); printf("\t\tmaxClipDistances = 0x%" PRIxLEAST32 "\n", limits->maxClipDistances ); printf("\t\tmaxCullDistances = 0x%" PRIxLEAST32 "\n", limits->maxCullDistances ); diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h index 0552ce08..4d3e51f1 100644 --- a/include/vulkan/vulkan.h +++ b/include/vulkan/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, 211, 0) +#define VK_API_VERSION VK_MAKE_VERSION(0, 212, 1) #define VK_NULL_HANDLE 0 @@ -1304,6 +1304,7 @@ typedef struct VkPhysicalDeviceLimits { VkSampleCountFlags sampledImageStencilSampleCounts; VkSampleCountFlags storageImageSampleCounts; uint32_t maxSampleMaskWords; + VkBool32 timestampComputeAndGraphics; float timestampPeriod; uint32_t maxClipDistances; uint32_t maxCullDistances; |
