aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJon Ashburn <jon@lunarg.com>2015-12-14 14:59:20 -0700
committerJon Ashburn <jon@lunarg.com>2015-12-15 08:51:46 -0700
commit55e3fb0146c3cdeac76ce857abd66b864d648f7d (patch)
tree5b625d5031de52a308b4a3baf2e625df0e54d8ff /include
parent2f43486df4d9a463d7a6de276e539426e30dd5da (diff)
downloadusermoji-55e3fb0146c3cdeac76ce857abd66b864d648f7d.tar.xz
vulkan: Changes for header version 211
Add anisotropyEnable to VkSamplerCreateInfo. Add inheritedQueries to VkPhysicalDeviceFeatures
Diffstat (limited to 'include')
-rw-r--r--include/vulkan/vulkan.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h
index 598d98eb..d9f8046c 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, 210, 0)
+#define VK_API_VERSION VK_MAKE_VERSION(0, 211, 0)
#define VK_NULL_HANDLE 0
@@ -1183,6 +1183,7 @@ typedef struct VkPhysicalDeviceFeatures {
VkBool32 sparseResidency16Samples;
VkBool32 sparseResidencyAliased;
VkBool32 variableMultisampleRate;
+ VkBool32 inheritedQueries;
} VkPhysicalDeviceFeatures;
typedef struct VkFormatProperties {
@@ -1851,6 +1852,7 @@ typedef struct VkSamplerCreateInfo {
VkSamplerAddressMode addressModeV;
VkSamplerAddressMode addressModeW;
float mipLodBias;
+ VkBool32 anisotropyEnable;
float maxAnisotropy;
VkBool32 compareEnable;
VkCompareOp compareOp;