diff options
author | Dave Airlie <[email protected]> | 2016-10-14 05:09:39 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-10-14 05:10:02 +1000 |
commit | 47a7d86fe907932c40484ccdeefeac269bbb0810 (patch) | |
tree | b6bdb2444a31db114e97d5b8f5b58723ce7dafe8 /src/amd | |
parent | a3834ebaf9ea8ff6826651392978cdb73b7fab96 (diff) |
radv: fix the wayland wsi busy bit
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/vulkan/radv_wsi_wayland.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_wsi_wayland.c b/src/amd/vulkan/radv_wsi_wayland.c index 5ce2e9e7915..739e0e32580 100644 --- a/src/amd/vulkan/radv_wsi_wayland.c +++ b/src/amd/vulkan/radv_wsi_wayland.c @@ -521,7 +521,7 @@ wsi_wl_swapchain_acquire_next_image(struct radv_swapchain *radv_chain, if (!chain->images[i].busy) { /* We found a non-busy image */ *image_index = i; - chain->images[image_index].busy = true; + chain->images[i].busy = true; return VK_SUCCESS; } } |