summaryrefslogtreecommitdiffstats
path: root/Tests
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
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')
-rw-r--r--Tests/DiligentCoreAPITest/src/RayTracingTest.cpp2
-rw-r--r--Tests/IncludeTest/GraphicsEngineD3D12/CommandQueueD3D12H_test.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/Tests/DiligentCoreAPITest/src/RayTracingTest.cpp b/Tests/DiligentCoreAPITest/src/RayTracingTest.cpp
index 03ff5ef6..d5a3b8d7 100644
--- a/Tests/DiligentCoreAPITest/src/RayTracingTest.cpp
+++ b/Tests/DiligentCoreAPITest/src/RayTracingTest.cpp
@@ -38,8 +38,6 @@
#include "InlineShaders/RayTracingTestHLSL.h"
#include "RayTracingTestConstants.hpp"
-#include "Vulkan/TestingEnvironmentVk.hpp"
-
namespace Diligent
{
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;