mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-04-13 05:43:18 -07:00
vkd3d: Add support for the ID3D12CommandList6 interface.
This commit is contained in:
parent
9ff5b2ce7a
commit
969cae8b67
Notes:
Henri Verbeet
2024-08-05 16:13:08 +02:00
Approved-by: Giovanni Mascellani (@giomasce) Approved-by: Henri Verbeet (@hverbeet) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/975
File diff suppressed because it is too large
Load Diff
@ -3119,8 +3119,8 @@ static HRESULT STDMETHODCALLTYPE d3d12_device_CreateCommandList(ID3D12Device9 *i
|
||||
initial_pipeline_state, &object)))
|
||||
return hr;
|
||||
|
||||
return return_interface(&object->ID3D12GraphicsCommandList5_iface,
|
||||
&IID_ID3D12GraphicsCommandList5, riid, command_list);
|
||||
return return_interface(&object->ID3D12GraphicsCommandList6_iface,
|
||||
&IID_ID3D12GraphicsCommandList6, riid, command_list);
|
||||
}
|
||||
|
||||
/* Direct3D feature levels restrict which formats can be optionally supported. */
|
||||
|
@ -1232,7 +1232,7 @@ enum vkd3d_pipeline_bind_point
|
||||
/* ID3D12CommandList */
|
||||
struct d3d12_command_list
|
||||
{
|
||||
ID3D12GraphicsCommandList5 ID3D12GraphicsCommandList5_iface;
|
||||
ID3D12GraphicsCommandList6 ID3D12GraphicsCommandList6_iface;
|
||||
unsigned int refcount;
|
||||
|
||||
D3D12_COMMAND_LIST_TYPE type;
|
||||
|
Loading…
x
Reference in New Issue
Block a user