mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-01-28 13:05:02 -08:00
vkd3d: Check sparse image format is supported.
Based on code by Jan Sikorski.
This commit is contained in:
parent
861078d63a
commit
9532ac5f84
Notes:
Alexandre Julliard
2023-06-27 23:33:57 +02:00
Approved-by: Giovanni Mascellani (@giomasce) Approved-by: Henri Verbeet (@hverbeet) Approved-by: Alexandre Julliard (@julliard) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/216
@ -779,6 +779,7 @@ static HRESULT vkd3d_create_image(struct d3d12_device *device,
|
||||
VkImageFormatListCreateInfoKHR format_list;
|
||||
const struct vkd3d_format *format;
|
||||
VkImageCreateInfo image_info;
|
||||
uint32_t count;
|
||||
VkResult vr;
|
||||
|
||||
if (resource)
|
||||
@ -914,6 +915,20 @@ static HRESULT vkd3d_create_image(struct d3d12_device *device,
|
||||
if (resource && image_info.tiling == VK_IMAGE_TILING_LINEAR)
|
||||
resource->flags |= VKD3D_RESOURCE_LINEAR_TILING;
|
||||
|
||||
if (sparse_resource)
|
||||
{
|
||||
count = 0;
|
||||
VK_CALL(vkGetPhysicalDeviceSparseImageFormatProperties(device->vk_physical_device, image_info.format,
|
||||
image_info.imageType, image_info.samples, image_info.usage, image_info.tiling, &count, NULL));
|
||||
|
||||
if (!count)
|
||||
{
|
||||
FIXME("Sparse images are not supported with format %u, type %u, samples %u, usage %#x.\n",
|
||||
image_info.format, image_info.imageType, image_info.samples, image_info.usage);
|
||||
return E_INVALIDARG;
|
||||
}
|
||||
}
|
||||
|
||||
if ((vr = VK_CALL(vkCreateImage(device->vk_device, &image_info, NULL, vk_image))) < 0)
|
||||
WARN("Failed to create Vulkan image, vr %d.\n", vr);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user