Skip to content

Commit 816038d

Browse files
committed
Correctly isolate command lists and command list allocators to individual frame contexts instead of sharing frame context 0's allocator for all command lists
1 parent 7745e25 commit 816038d

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

src/d3d12/D3D12.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ struct D3D12
3535
struct FrameContext
3636
{
3737
Microsoft::WRL::ComPtr<ID3D12CommandAllocator> CommandAllocator;
38+
Microsoft::WRL::ComPtr<ID3D12GraphicsCommandList> CommandList{};
3839
Microsoft::WRL::ComPtr<ID3D12Resource> BackBuffer;
3940
D3D12_CPU_DESCRIPTOR_HANDLE MainRenderTargetDescriptor{0};
4041
};
@@ -62,7 +63,6 @@ struct D3D12
6263
Microsoft::WRL::ComPtr<ID3D12Device> m_pd3d12Device{};
6364
Microsoft::WRL::ComPtr<ID3D12DescriptorHeap> m_pd3dRtvDescHeap{};
6465
Microsoft::WRL::ComPtr<ID3D12DescriptorHeap> m_pd3dSrvDescHeap{};
65-
Microsoft::WRL::ComPtr<ID3D12GraphicsCommandList> m_pd3dCommandList{};
6666

6767
// borrowed resources from game, do not manipulate reference counts on these!
6868
Microsoft::WRL::ComPtr<IDXGISwapChain4> m_pdxgiSwapChain{nullptr};

src/d3d12/D3D12_Functions.cpp

+15-14
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ bool D3D12::ResetState(const bool acDestroyContext)
3535
m_pd3d12Device.Reset();
3636
m_pd3dRtvDescHeap.Reset();
3737
m_pd3dSrvDescHeap.Reset();
38-
m_pd3dCommandList.Reset();
3938

4039
m_pCommandQueue.Reset();
4140
m_pdxgiSwapChain.Reset();
@@ -113,17 +112,19 @@ bool D3D12::Initialize()
113112
}
114113

115114
for (auto& context : m_frameContexts)
115+
{
116116
if (FAILED(m_pd3d12Device->CreateCommandAllocator(D3D12_COMMAND_LIST_TYPE_DIRECT, IID_PPV_ARGS(&context.CommandAllocator))))
117117
{
118118
Log::Error("D3D12::Initialize() - failed to create command allocator!");
119119
return ResetState();
120120
}
121121

122-
if (FAILED(m_pd3d12Device->CreateCommandList(0, D3D12_COMMAND_LIST_TYPE_DIRECT, m_frameContexts[0].CommandAllocator.Get(), nullptr, IID_PPV_ARGS(&m_pd3dCommandList))) ||
123-
FAILED(m_pd3dCommandList->Close()))
124-
{
125-
Log::Error("D3D12::Initialize() - failed to create command list!");
126-
return ResetState();
122+
if (FAILED(m_pd3d12Device->CreateCommandList(0, D3D12_COMMAND_LIST_TYPE_DIRECT, context.CommandAllocator.Get(), nullptr, IID_PPV_ARGS(&context.CommandList))) ||
123+
FAILED(context.CommandList->Close()))
124+
{
125+
Log::Error("D3D12::Initialize() - failed to create command list!");
126+
return ResetState();
127+
}
127128
}
128129

129130
if (!InitializeImGui(buffersCounts))
@@ -404,18 +405,18 @@ void D3D12::Update()
404405

405406
ID3D12DescriptorHeap* heaps[] = {m_pd3dSrvDescHeap.Get()};
406407

407-
m_pd3dCommandList->Reset(frameContext.CommandAllocator.Get(), nullptr);
408-
m_pd3dCommandList->ResourceBarrier(1, &barrier);
409-
m_pd3dCommandList->SetDescriptorHeaps(1, heaps);
410-
m_pd3dCommandList->OMSetRenderTargets(1, &frameContext.MainRenderTargetDescriptor, FALSE, nullptr);
408+
frameContext.CommandList->Reset(frameContext.CommandAllocator.Get(), nullptr);
409+
frameContext.CommandList->ResourceBarrier(1, &barrier);
410+
frameContext.CommandList->SetDescriptorHeaps(1, heaps);
411+
frameContext.CommandList->OMSetRenderTargets(1, &frameContext.MainRenderTargetDescriptor, FALSE, nullptr);
411412

412-
ImGui_ImplDX12_RenderDrawData(&m_imguiDrawDataBuffers[0], m_pd3dCommandList.Get());
413+
ImGui_ImplDX12_RenderDrawData(&m_imguiDrawDataBuffers[0], frameContext.CommandList.Get());
413414

414415
barrier.Transition.StateBefore = D3D12_RESOURCE_STATE_RENDER_TARGET;
415416
barrier.Transition.StateAfter = D3D12_RESOURCE_STATE_PRESENT;
416-
m_pd3dCommandList->ResourceBarrier(1, &barrier);
417-
m_pd3dCommandList->Close();
417+
frameContext.CommandList->ResourceBarrier(1, &barrier);
418+
frameContext.CommandList->Close();
418419

419-
ID3D12CommandList* commandLists[] = {m_pd3dCommandList.Get()};
420+
ID3D12CommandList* commandLists[] = {frameContext.CommandList.Get()};
420421
m_pCommandQueue->ExecuteCommandLists(1, commandLists);
421422
}

0 commit comments

Comments
 (0)