mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-09-12 18:50:22 -07:00
vkd3d: Return success from d3d12_device_EnumerateMetaCommands().
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
This commit is contained in:
committed by
Henri Verbeet
parent
2c49f04411
commit
a4f5225229
Notes:
Henri Verbeet
2025-07-28 16:39:06 +02:00
Approved-by: Henri Verbeet (@hverbeet) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/1652
@@ -5193,7 +5193,12 @@ static HRESULT STDMETHODCALLTYPE d3d12_device_EnumerateMetaCommands(ID3D12Device
|
||||
FIXME("iface %p, num_meta_commands %p, command_desc %p stub!\n", iface,
|
||||
num_meta_commands, command_desc);
|
||||
|
||||
return E_NOTIMPL;
|
||||
if (!num_meta_commands)
|
||||
return E_INVALIDARG;
|
||||
|
||||
*num_meta_commands = 0;
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT STDMETHODCALLTYPE d3d12_device_EnumerateMetaCommandParameters(ID3D12Device9 *iface,
|
||||
|
Reference in New Issue
Block a user