diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2021-02-07 20:50:39 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2021-02-07 20:50:39 +0000 |
| commit | c6c5bb5ed3d4e3296e6f65e4072db5cf8bf2452c (patch) | |
| tree | e8848a7e01b2f576c11e9f9acfee6eca9fcdd681 /Tests/IncludeTest | |
| parent | Swap chain Vk: improved presentation mode selection (fixed https://github.com... (diff) | |
| download | DiligentCore-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.c | 2 |
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; |
