From b590c48e81c33a9605a70efcf821398c2216f709 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Samuel=20Iglesias=20Gons=C3=A1lvez?= Date: Tue, 1 Jun 2021 12:46:49 +0200 Subject: [PATCH] Fix wait semaphore count value MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Components: Vulkan VK-GL-CTS issue: 2949 Fixes: a47665a6e "Generalize synchronization tests" Affected tests: dEQP-VK.synchronization.op.single_queue.binary_semaphore.* Change-Id: I14bb0d79b67e444b20683a766b769ce3a94a3222 Signed-off-by: Samuel Iglesias Gonsálvez (cherry picked from commit bfe111789be62a974f403d452073ba30b24e5632) --- .../vktSynchronizationOperationSingleQueueTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/vulkancts/modules/vulkan/synchronization/vktSynchronizationOperationSingleQueueTests.cpp b/external/vulkancts/modules/vulkan/synchronization/vktSynchronizationOperationSingleQueueTests.cpp index 886548a46..61c16788a 100644 --- a/external/vulkancts/modules/vulkan/synchronization/vktSynchronizationOperationSingleQueueTests.cpp +++ b/external/vulkancts/modules/vulkan/synchronization/vktSynchronizationOperationSingleQueueTests.cpp @@ -281,7 +281,7 @@ public: &signalSemaphoreSubmitInfo ); synchronizationWrapper->addSubmitInfo( - 0u, + 1u, &waitSemaphoreSubmitInfo, 1u, &commandBufferSubmitInfo[READ], -- 2.34.1