mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 11:28:05 +02:00
vulkan/wsi/x11: add support for IMMEDIATE present mode
We shouldn't be using ASYNC here, that would be used
for immediate mode, so let's implement that.
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Signed-off-by: Dave Airlie <airlied@redhat.com>
(cherry picked from commit ca035006c8)
This commit is contained in:
parent
2e3e5c0e73
commit
6eceac3a02
1 changed files with 3 additions and 1 deletions
|
|
@ -143,6 +143,7 @@ static const VkSurfaceFormatKHR formats[] = {
|
|||
};
|
||||
|
||||
static const VkPresentModeKHR present_modes[] = {
|
||||
VK_PRESENT_MODE_IMMEDIATE_KHR,
|
||||
VK_PRESENT_MODE_MAILBOX_KHR,
|
||||
};
|
||||
|
||||
|
|
@ -654,7 +655,8 @@ x11_queue_present(struct wsi_swapchain *anv_chain,
|
|||
int64_t divisor = 0;
|
||||
int64_t remainder = 0;
|
||||
|
||||
options |= XCB_PRESENT_OPTION_ASYNC;
|
||||
if (chain->base.present_mode == VK_PRESENT_MODE_IMMEDIATE_KHR)
|
||||
options |= XCB_PRESENT_OPTION_ASYNC;
|
||||
|
||||
xshmfence_reset(image->shm_fence);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue