dzn: always use ID3D12GraphicsCommandList1

In the C-interface, ID3D12GraphicsCommandList1 and
ID3D12GraphicsCommandList are unrelated types. So let's make sure we
consistenly use the most up-to-date version.

Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15816>
This commit is contained in:
Erik Faye-Lund 2022-03-25 15:59:23 +01:00 committed by Marge Bot
parent 411dfc574c
commit 8c6f50efdb

View file

@ -1421,7 +1421,7 @@ dzn_cmd_buffer_copy_buf2img_region(dzn_cmd_buffer *cmdbuf,
VK_FROM_HANDLE(dzn_image, dst_image, info->dstImage);
ID3D12Device1 *dev = device->dev;
ID3D12GraphicsCommandList *cmdlist = cmdbuf->cmdlist;
ID3D12GraphicsCommandList1 *cmdlist = cmdbuf->cmdlist;
const VkBufferImageCopy2 *region = &info->pRegions[r];
enum pipe_format pfmt = vk_format_to_pipe_format(dst_image->vk.format);
@ -1492,7 +1492,7 @@ dzn_cmd_buffer_copy_img2buf_region(dzn_cmd_buffer *cmdbuf,
VK_FROM_HANDLE(dzn_buffer, dst_buffer, info->dstBuffer);
ID3D12Device1 *dev = device->dev;
ID3D12GraphicsCommandList *cmdlist = cmdbuf->cmdlist;
ID3D12GraphicsCommandList1 *cmdlist = cmdbuf->cmdlist;
const VkBufferImageCopy2 *region = &info->pRegions[r];
enum pipe_format pfmt = vk_format_to_pipe_format(src_image->vk.format);
@ -1563,7 +1563,7 @@ dzn_cmd_buffer_copy_img_chunk(dzn_cmd_buffer *cmdbuf,
VK_FROM_HANDLE(dzn_image, dst, info->dstImage);
ID3D12Device1 *dev = device->dev;
ID3D12GraphicsCommandList *cmdlist = cmdbuf->cmdlist;
ID3D12GraphicsCommandList1 *cmdlist = cmdbuf->cmdlist;
const VkImageCopy2 *region = &info->pRegions[r];
const VkImageSubresourceLayers *src_subres = &region->srcSubresource;