Module: Mesa Branch: main Commit: 863bc08136ae359a3e7ba65574b2564ed56655a6 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=863bc08136ae359a3e7ba65574b2564ed56655a6
Author: Samuel Pitoiset <[email protected]> Date: Thu Feb 2 13:21:43 2023 +0100 radv: remove one unused variable in radv_graphics_lib_pipeline_init() Signed-off-by: Samuel Pitoiset <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21042> --- src/amd/vulkan/radv_pipeline.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/amd/vulkan/radv_pipeline.c b/src/amd/vulkan/radv_pipeline.c index 9eacda921f6..92f382db083 100644 --- a/src/amd/vulkan/radv_pipeline.c +++ b/src/amd/vulkan/radv_pipeline.c @@ -5169,9 +5169,6 @@ radv_graphics_lib_pipeline_init(struct radv_graphics_lib_pipeline *pipeline, if (pipeline->base.active_stages != 0 || (imported_flags & VK_GRAPHICS_PIPELINE_LIBRARY_FRAGMENT_SHADER_BIT_EXT)) { - const VkPipelineCreationFeedbackCreateInfo *creation_feedback = - vk_find_struct_const(pCreateInfo->pNext, PIPELINE_CREATION_FEEDBACK_CREATE_INFO); - struct radv_pipeline_key key = radv_generate_graphics_pipeline_key(&pipeline->base, pCreateInfo, state);
