summaryrefslogtreecommitdiffstats
path: root/src/vulkan/anv_device.c
diff options
context:
space:
mode:
authorChad Versace <[email protected]>2015-08-17 14:03:52 -0700
committerChad Versace <[email protected]>2015-08-17 14:08:55 -0700
commit6ff95bba8abd50b47117f733d3e46fb90333210f (patch)
treecfe146ab77cf559097c5beb767aa6fee9fae6e9e /src/vulkan/anv_device.c
parent5a6b2e6df0ac63e20856dfcd1fc9f0ff73ae67e2 (diff)
vk: Add anv_format reference to anv_render_pass_attachment
Change type of anv_render_pass_attachment::format from VkFormat to const struct anv_format*. This elimiates the repetitive lookups into the VkFormat -> anv_format table when looping over attachments during anv_cmd_buffer_clear_attachments().
Diffstat (limited to 'src/vulkan/anv_device.c')
-rw-r--r--src/vulkan/anv_device.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vulkan/anv_device.c b/src/vulkan/anv_device.c
index 0f06f3e5a91..145d16f485e 100644
--- a/src/vulkan/anv_device.c
+++ b/src/vulkan/anv_device.c
@@ -2229,7 +2229,8 @@ VkResult anv_CreateRenderPass(
pass->attachments = anv_device_alloc(device, size, 8,
VK_SYSTEM_ALLOC_TYPE_API_OBJECT);
for (uint32_t i = 0; i < pCreateInfo->attachmentCount; i++) {
- pass->attachments[i].format = pCreateInfo->pAttachments[i].format;
+ pass->attachments[i].format =
+ anv_format_for_vk_format(pCreateInfo->pAttachments[i].format);
pass->attachments[i].samples = pCreateInfo->pAttachments[i].samples;
pass->attachments[i].load_op = pCreateInfo->pAttachments[i].loadOp;
pass->attachments[i].stencil_load_op = pCreateInfo->pAttachments[i].stencilLoadOp;