diff options
author | Dave Airlie <[email protected]> | 2016-10-13 04:43:27 +0100 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-10-19 10:15:42 +1000 |
commit | 32d70c0d66ba28c7ac53b797730532c06439c799 (patch) | |
tree | 4f61241e0817f73192e90c18046598e7fd737463 /src/intel | |
parent | aeceec54a86d26aad165a1ade67a8aba61ae080f (diff) |
radv/anv/wsi: drop unneeded parameter
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/vulkan/anv_wsi.c | 2 | ||||
-rw-r--r-- | src/intel/vulkan/anv_wsi.h | 1 | ||||
-rw-r--r-- | src/intel/vulkan/anv_wsi_wayland.c | 1 | ||||
-rw-r--r-- | src/intel/vulkan/anv_wsi_x11.c | 1 |
4 files changed, 1 insertions, 4 deletions
diff --git a/src/intel/vulkan/anv_wsi.c b/src/intel/vulkan/anv_wsi.c index e15d1a3e073..fc35572b244 100644 --- a/src/intel/vulkan/anv_wsi.c +++ b/src/intel/vulkan/anv_wsi.c @@ -222,7 +222,7 @@ VkResult anv_QueuePresentKHR( anv_QueueSubmit(_queue, 0, NULL, swapchain->fences[0]); - result = swapchain->queue_present(swapchain, queue, + result = swapchain->queue_present(swapchain, pPresentInfo->pImageIndices[i]); /* TODO: What if one of them returns OUT_OF_DATE? */ if (result != VK_SUCCESS) diff --git a/src/intel/vulkan/anv_wsi.h b/src/intel/vulkan/anv_wsi.h index 02be86dada5..f502677dc34 100644 --- a/src/intel/vulkan/anv_wsi.h +++ b/src/intel/vulkan/anv_wsi.h @@ -66,7 +66,6 @@ struct anv_swapchain { uint64_t timeout, VkSemaphore semaphore, uint32_t *image_index); VkResult (*queue_present)(struct anv_swapchain *swap_chain, - struct anv_queue *queue, uint32_t image_index); }; diff --git a/src/intel/vulkan/anv_wsi_wayland.c b/src/intel/vulkan/anv_wsi_wayland.c index ad3a8038069..35de4280bd2 100644 --- a/src/intel/vulkan/anv_wsi_wayland.c +++ b/src/intel/vulkan/anv_wsi_wayland.c @@ -554,7 +554,6 @@ static const struct wl_callback_listener frame_listener = { static VkResult wsi_wl_swapchain_queue_present(struct anv_swapchain *anv_chain, - struct anv_queue *queue, uint32_t image_index) { struct wsi_wl_swapchain *chain = (struct wsi_wl_swapchain *)anv_chain; diff --git a/src/intel/vulkan/anv_wsi_x11.c b/src/intel/vulkan/anv_wsi_x11.c index 3b7ecf06381..5d025c5e906 100644 --- a/src/intel/vulkan/anv_wsi_x11.c +++ b/src/intel/vulkan/anv_wsi_x11.c @@ -594,7 +594,6 @@ x11_acquire_next_image(struct anv_swapchain *anv_chain, static VkResult x11_queue_present(struct anv_swapchain *anv_chain, - struct anv_queue *queue, uint32_t image_index) { struct x11_swapchain *chain = (struct x11_swapchain *)anv_chain; |