From 3d2c3dc62be5410647fc651c3533c9a32fa46c3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Roberto=20de=20Souza?= Date: Thu, 16 May 2024 09:15:56 -0700 Subject: [PATCH] anv: Nuke perf_query_pass from anv_execbuf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It is set but not read. Reviewed-by: Lionel Landwerlin Signed-off-by: José Roberto de Souza Part-of: --- src/intel/vulkan/i915/anv_batch_chain.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/intel/vulkan/i915/anv_batch_chain.c b/src/intel/vulkan/i915/anv_batch_chain.c index 330b26b8ed5..8ed92a86884 100644 --- a/src/intel/vulkan/i915/anv_batch_chain.c +++ b/src/intel/vulkan/i915/anv_batch_chain.c @@ -50,8 +50,6 @@ struct anv_execbuf { const VkAllocationCallbacks * alloc; VkSystemAllocationScope alloc_scope; - - int perf_query_pass; }; static void @@ -796,7 +794,6 @@ i915_queue_exec_locked(struct anv_queue *queue, struct anv_execbuf execbuf = { .alloc = &queue->device->vk.alloc, .alloc_scope = VK_SYSTEM_ALLOCATION_SCOPE_DEVICE, - .perf_query_pass = perf_query_pass, }; VkResult result;