vkd3d: Return success from d3d12_device_EnumerateMetaCommands().

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
This commit is contained in:
Nikolay Sivov
2025-07-25 21:46:07 +02:00
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
2 changed files with 40 additions and 1 deletions

View File

@@ -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,