Update DX headers to 10.0.18362.0, add new interfaces

* ID3D12GraphicsCommandList5 and ID3D12Device6
This commit is contained in:
baldurk
2019-09-19 20:09:38 +01:00
parent ea5515b1da
commit 0bcf9a4e2d
37 changed files with 2564 additions and 178 deletions
+3 -3
View File
@@ -73,7 +73,7 @@ ResourceId D3D12RenderState::GetDSVID() const
return dsv.GetResResourceId();
}
void D3D12RenderState::ApplyState(WrappedID3D12Device *dev, ID3D12GraphicsCommandList4 *cmd) const
void D3D12RenderState::ApplyState(WrappedID3D12Device *dev, ID3D12GraphicsCommandListX *cmd) const
{
D3D12_COMMAND_LIST_TYPE type = cmd->GetType();
@@ -183,7 +183,7 @@ void D3D12RenderState::ApplyState(WrappedID3D12Device *dev, ID3D12GraphicsComman
}
}
void D3D12RenderState::ApplyComputeRootElements(ID3D12GraphicsCommandList4 *cmd) const
void D3D12RenderState::ApplyComputeRootElements(ID3D12GraphicsCommandListX *cmd) const
{
for(size_t i = 0; i < compute.sigelems.size(); i++)
{
@@ -202,7 +202,7 @@ void D3D12RenderState::ApplyComputeRootElements(ID3D12GraphicsCommandList4 *cmd)
}
}
void D3D12RenderState::ApplyGraphicsRootElements(ID3D12GraphicsCommandList4 *cmd) const
void D3D12RenderState::ApplyGraphicsRootElements(ID3D12GraphicsCommandListX *cmd) const
{
for(size_t i = 0; i < graphics.sigelems.size(); i++)
{