summaryrefslogtreecommitdiffstats
path: root/Tests/IncludeTest
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2021-02-07 20:50:39 +0000
committerassiduous <assiduous@diligentgraphics.com>2021-02-07 20:50:39 +0000
commitc6c5bb5ed3d4e3296e6f65e4072db5cf8bf2452c (patch)
treee8848a7e01b2f576c11e9f9acfee6eca9fcdd681 /Tests/IncludeTest
parentSwap chain Vk: improved presentation mode selection (fixed https://github.com... (diff)
downloadDiligentCore-c6c5bb5ed3d4e3296e6f65e4072db5cf8bf2452c.tar.gz
DiligentCore-c6c5bb5ed3d4e3296e6f65e4072db5cf8bf2452c.zip
Reworked ExecuteCommandList(s) to take multiple command lists instead of one
Diffstat (limited to 'Tests/IncludeTest')
-rw-r--r--Tests/IncludeTest/GraphicsEngineD3D12/CommandQueueD3D12H_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/IncludeTest/GraphicsEngineD3D12/CommandQueueD3D12H_test.c b/Tests/IncludeTest/GraphicsEngineD3D12/CommandQueueD3D12H_test.c
index cdaee40d..36ce2735 100644
--- a/Tests/IncludeTest/GraphicsEngineD3D12/CommandQueueD3D12H_test.c
+++ b/Tests/IncludeTest/GraphicsEngineD3D12/CommandQueueD3D12H_test.c
@@ -33,7 +33,7 @@ void TestCommandQueueD3D12CInterface(ICommandQueueD3D12* pQueue)
Uint64 FenceVal = ICommandQueueD3D12_GetNextFenceValue(pQueue);
(void)FenceVal;
- FenceVal = ICommandQueueD3D12_Submit(pQueue, (ID3D12GraphicsCommandList*)NULL);
+ FenceVal = ICommandQueueD3D12_Submit(pQueue, 1, (ID3D12CommandList* const*)NULL);
ID3D12CommandQueue* pd3d12Queue = ICommandQueueD3D12_GetD3D12CommandQueue(pQueue);
(void)pd3d12Queue;