diff options
author | Jason Ekstrand <[email protected]> | 2015-10-05 20:26:21 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-10-05 20:26:21 -0700 |
commit | 757166592e5e26dc226849f94d1460db28a35170 (patch) | |
tree | cea280033792e3b7db5d4c19eb3309383e2cb80b /include/vulkan | |
parent | 57f500324b8d7b6de1e3d5e0c0b18622b97ecca9 (diff) |
vk/0.170.2: Rename pointer parameters of VkSubpassDescription
Diffstat (limited to 'include/vulkan')
-rw-r--r-- | include/vulkan/vulkan.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h index 2afe53b6c9d..25d0f829f77 100644 --- a/include/vulkan/vulkan.h +++ b/include/vulkan/vulkan.h @@ -1885,13 +1885,13 @@ typedef struct { VkPipelineBindPoint pipelineBindPoint; VkSubpassDescriptionFlags flags; uint32_t inputCount; - const VkAttachmentReference* inputAttachments; + const VkAttachmentReference* pInputAttachments; uint32_t colorCount; - const VkAttachmentReference* colorAttachments; - const VkAttachmentReference* resolveAttachments; + const VkAttachmentReference* pColorAttachments; + const VkAttachmentReference* pResolveAttachments; VkAttachmentReference depthStencilAttachment; uint32_t preserveCount; - const VkAttachmentReference* preserveAttachments; + const VkAttachmentReference* pPreserveAttachments; } VkSubpassDescription; typedef struct { |