[PATCH 0/1] MR5017: vkd3d: Implemented d3d12 SetDepthBounds
From: raphaelabrantes <antenabr2(a)gmail.com> --- libs/vkd3d/libs/vkd3d/command.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libs/vkd3d/libs/vkd3d/command.c b/libs/vkd3d/libs/vkd3d/command.c index 15c8317b191..bc879494a81 100644 --- a/libs/vkd3d/libs/vkd3d/command.c +++ b/libs/vkd3d/libs/vkd3d/command.c @@ -5892,7 +5892,13 @@ static void STDMETHODCALLTYPE d3d12_command_list_AtomicCopyBufferUINT64(ID3D12Gr static void STDMETHODCALLTYPE d3d12_command_list_OMSetDepthBounds(ID3D12GraphicsCommandList5 *iface, FLOAT min, FLOAT max) { - FIXME("iface %p, min %.8e, max %.8e stub!\n", iface, min, max); + TRACE("iface %p, min %.8e, max %.8e stub!\n", iface, min, max); + + struct d3d12_command_list *list = impl_from_ID3D12GraphicsCommandList5(iface); + const struct vkd3d_vk_device_procs *vk_procs; + + vk_procs = &list->device->vk_procs; + VK_CALL(vkCmdSetDepthBounds(list->vk_command_buffer, min, max)); } static void STDMETHODCALLTYPE d3d12_command_list_SetSamplePositions(ID3D12GraphicsCommandList5 *iface, -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/5017
Please send vkd3d changes to the [vkd3d project](https://gitlab.winehq.org/wine/vkd3d). Once they are committed there, the changes will be imported into Wine with the next vkd3d release. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5017#note_60077
This merge request was closed by Alexandre Julliard. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5017
participants (3)
-
Alexandre Julliard (@julliard) -
Raphael Abrantes (@antenabr2) -
raphaelabrantes