summaryrefslogtreecommitdiffstats
path: root/include/vulkan
diff options
context:
space:
mode:
authorChad Versace <[email protected]>2015-10-07 10:58:55 -0700
committerChad Versace <[email protected]>2015-10-07 10:58:55 -0700
commit8dee32e71f0ccbdf2b9404fe553a83da8bea79dc (patch)
tree1d18c287383bcd10c49c8ca4a113e2cb9ee5c5bd /include/vulkan
parent92e7bd361065ff3dad863736456f3729952bf5a2 (diff)
vk/0.170: Update VkDescriptorInfo
Ignore the new bufferInfo field with a anv_finishme.
Diffstat (limited to 'include/vulkan')
-rw-r--r--include/vulkan/vulkan.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h
index 89963aea55c..dcba29cb426 100644
--- a/include/vulkan/vulkan.h
+++ b/include/vulkan/vulkan.h
@@ -1844,10 +1844,17 @@ typedef struct {
} VkDescriptorPoolCreateInfo;
typedef struct {
+ VkBuffer buffer;
+ VkDeviceSize offset;
+ VkDeviceSize range;
+} VkDescriptorBufferInfo;
+
+typedef struct {
VkBufferView bufferView;
VkSampler sampler;
VkImageView imageView;
VkImageLayout imageLayout;
+ VkDescriptorBufferInfo bufferInfo;
} VkDescriptorInfo;
typedef struct {