projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ce74a7b
)
vulkan/wsi: fix s/,/;/ typo
author
Eric Engestrom
<eric.engestrom@intel.com>
Tue, 20 Nov 2018 17:35:27 +0000
(17:35 +0000)
committer
Eric Engestrom
<eric.engestrom@intel.com>
Wed, 28 Nov 2018 16:44:01 +0000
(16:44 +0000)
Fixes:
59e58c348e6af16a5f2dd
"vulkan/wsi: Only wait on semaphores on the first swapchain"
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/vulkan/wsi/wsi_common.c
patch
|
blob
|
history
diff --git
a/src/vulkan/wsi/wsi_common.c
b/src/vulkan/wsi/wsi_common.c
index
1cd5f8d
..
58e2521
100644
(file)
--- a/
src/vulkan/wsi/wsi_common.c
+++ b/
src/vulkan/wsi/wsi_common.c
@@
-954,8
+954,8
@@
wsi_common_queue_present(const struct wsi_device *wsi,
/* We only need/want to wait on semaphores once. After that, we're
* guaranteed ordering since it all happens on the same queue.
*/
- submit_info.waitSemaphoreCount = pPresentInfo->waitSemaphoreCount
,
- submit_info.pWaitSemaphores = pPresentInfo->pWaitSemaphores
,
+ submit_info.waitSemaphoreCount = pPresentInfo->waitSemaphoreCount
;
+ submit_info.pWaitSemaphores = pPresentInfo->pWaitSemaphores
;
/* Set up the pWaitDstStageMasks */
stage_flags = vk_alloc(&swapchain->alloc,