mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-09-12 18:50:22 -07:00
vkd3d: Add SetViewInstanceMask() to the ID3D12GraphicsCommandList1 interface.
This method was missing in version 10.0.15063.0 of the SDK, but is present in version 10.0.18362.0, without a UUID change. Presumably that means this was simply an omission in the older header, rather than an API change in the newer header. Signed-off-by: Conor McCarthy <cmccarthy@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
committed by
Alexandre Julliard
parent
a303482acc
commit
9c64642468
@@ -5483,6 +5483,11 @@ static void STDMETHODCALLTYPE d3d12_command_list_ResolveSubresourceRegion(ID3D12
|
||||
src_resource, src_sub_resource_idx, src_rect, format, mode);
|
||||
}
|
||||
|
||||
static void STDMETHODCALLTYPE d3d12_command_list_SetViewInstanceMask(ID3D12GraphicsCommandList1 *iface, UINT mask)
|
||||
{
|
||||
FIXME("iface %p, mask %#x stub!\n", iface, mask);
|
||||
}
|
||||
|
||||
static const struct ID3D12GraphicsCommandList1Vtbl d3d12_command_list_vtbl =
|
||||
{
|
||||
/* IUnknown methods */
|
||||
@@ -5556,6 +5561,7 @@ static const struct ID3D12GraphicsCommandList1Vtbl d3d12_command_list_vtbl =
|
||||
d3d12_command_list_OMSetDepthBounds,
|
||||
d3d12_command_list_SetSamplePositions,
|
||||
d3d12_command_list_ResolveSubresourceRegion,
|
||||
d3d12_command_list_SetViewInstanceMask,
|
||||
};
|
||||
|
||||
static struct d3d12_command_list *unsafe_impl_from_ID3D12CommandList(ID3D12CommandList *iface)
|
||||
|
Reference in New Issue
Block a user