mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-13 16:08:50 +01:00
f1b075c0f3
Reduces the number of dynamic memory allocations for CS chunks by recycling them once they are no longer needed. Also fixes a potential issue with chunks that are dispatched multiple times.
49 lines
1.0 KiB
C++
49 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include "d3d11_context.h"
|
|
|
|
namespace dxvk {
|
|
|
|
class D3D11CommandList : public D3D11DeviceChild<ID3D11CommandList> {
|
|
|
|
public:
|
|
|
|
D3D11CommandList(
|
|
D3D11Device* pDevice,
|
|
UINT ContextFlags);
|
|
|
|
~D3D11CommandList();
|
|
|
|
HRESULT STDMETHODCALLTYPE QueryInterface(
|
|
REFIID riid,
|
|
void** ppvObject) final;
|
|
|
|
void STDMETHODCALLTYPE GetDevice(
|
|
ID3D11Device **ppDevice) final;
|
|
|
|
UINT STDMETHODCALLTYPE GetContextFlags() final;
|
|
|
|
void AddChunk(
|
|
DxvkCsChunkRef&& Chunk);
|
|
|
|
void EmitToCommandList(
|
|
ID3D11CommandList* pCommandList);
|
|
|
|
void EmitToCsThread(
|
|
DxvkCsThread* CsThread);
|
|
|
|
private:
|
|
|
|
D3D11Device* const m_device;
|
|
UINT const m_contextFlags;
|
|
|
|
std::vector<DxvkCsChunkRef> m_chunks;
|
|
|
|
std::atomic<bool> m_submitted = { false };
|
|
std::atomic<bool> m_warned = { false };
|
|
|
|
void MarkSubmitted();
|
|
|
|
};
|
|
|
|
} |