lavapipe: remove some unused struct members

Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13349>
This commit is contained in:
Mike Blumenkrantz
2021-10-01 14:19:24 -04:00
committed by Marge Bot
parent d103d5bb5d
commit dd70ff3b8c
2 changed files with 0 additions and 3 deletions
@@ -187,7 +187,6 @@ VKAPI_ATTR VkResult VKAPI_CALL lvp_CreateRenderPass2(
att->samples = pCreateInfo->pAttachments[i].samples;
att->load_op = pCreateInfo->pAttachments[i].loadOp;
att->stencil_load_op = pCreateInfo->pAttachments[i].stencilLoadOp;
att->final_layout = pCreateInfo->pAttachments[i].finalLayout;
att->first_subpass_idx = UINT32_MAX;
bool is_zs = util_format_is_depth_or_stencil(lvp_vk_format_to_pipe_format(att->format));
@@ -295,8 +295,6 @@ struct lvp_render_pass_attachment {
uint32_t samples;
VkAttachmentLoadOp load_op;
VkAttachmentLoadOp stencil_load_op;
VkImageLayout initial_layout;
VkImageLayout final_layout;
/* The subpass id in which the attachment will be used first/last. */
uint32_t first_subpass_idx;