diff options
author | Jason Ekstrand <[email protected]> | 2017-01-24 15:11:01 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-04-03 13:51:08 -0700 |
commit | f82b6c6272b48b4ce1f267239fa5b1cd3dfffcc7 (patch) | |
tree | af9d6edfe1a31672da755f392174c43e90fa932e /src/vulkan/wsi/wsi_common.h | |
parent | 3598a2907c071ca4642b8b247c8b0724681ab869 (diff) |
vulkan/wsi: Plumb present regions through the common code
Reviewed-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Daniel Stone <[email protected]>
Acked-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/vulkan/wsi/wsi_common.h')
-rw-r--r-- | src/vulkan/wsi/wsi_common.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vulkan/wsi/wsi_common.h b/src/vulkan/wsi/wsi_common.h index 8227c1e4e91..5e77518c098 100644 --- a/src/vulkan/wsi/wsi_common.h +++ b/src/vulkan/wsi/wsi_common.h @@ -69,7 +69,8 @@ struct wsi_swapchain { uint64_t timeout, VkSemaphore semaphore, uint32_t *image_index); VkResult (*queue_present)(struct wsi_swapchain *swap_chain, - uint32_t image_index); + uint32_t image_index, + const VkPresentRegionKHR *damage); void (*get_image_and_linear)(struct wsi_swapchain *swapchain, int imageIndex, VkImage *image, |