mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
vkd3d: Allow more memory types for custom heaps.
Signed-off-by: Józef Kucia <jkucia@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
3629787aad
commit
fd48757d25
@ -24,7 +24,7 @@ static unsigned int vkd3d_select_memory_type(struct d3d12_device *device, uint32
|
|||||||
const D3D12_HEAP_PROPERTIES *heap_properties, D3D12_HEAP_FLAGS heap_flags)
|
const D3D12_HEAP_PROPERTIES *heap_properties, D3D12_HEAP_FLAGS heap_flags)
|
||||||
{
|
{
|
||||||
const VkPhysicalDeviceMemoryProperties *memory_info = &device->memory_properties;
|
const VkPhysicalDeviceMemoryProperties *memory_info = &device->memory_properties;
|
||||||
VkMemoryPropertyFlags flags[2];
|
VkMemoryPropertyFlags flags[3];
|
||||||
unsigned int i, j, count = 0;
|
unsigned int i, j, count = 0;
|
||||||
|
|
||||||
switch (heap_properties->Type)
|
switch (heap_properties->Type)
|
||||||
@ -37,15 +37,20 @@ static unsigned int vkd3d_select_memory_type(struct d3d12_device *device, uint32
|
|||||||
flags[count++] = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT;
|
flags[count++] = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case D3D12_HEAP_TYPE_CUSTOM:
|
|
||||||
FIXME("Custom heaps not supported yet.\n");
|
|
||||||
/* fall-through */
|
|
||||||
case D3D12_HEAP_TYPE_READBACK:
|
case D3D12_HEAP_TYPE_READBACK:
|
||||||
flags[count++] = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT
|
flags[count++] = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT
|
||||||
| VK_MEMORY_PROPERTY_HOST_CACHED_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT;
|
| VK_MEMORY_PROPERTY_HOST_CACHED_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT;
|
||||||
flags[count++] = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT;
|
flags[count++] = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case D3D12_HEAP_TYPE_CUSTOM:
|
||||||
|
FIXME("Custom heaps not supported yet.\n");
|
||||||
|
flags[count++] = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT
|
||||||
|
| VK_MEMORY_PROPERTY_HOST_CACHED_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT;
|
||||||
|
flags[count++] = VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT;
|
||||||
|
flags[count++] = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
WARN("Invalid heap type %#x.\n", heap_properties->Type);
|
WARN("Invalid heap type %#x.\n", heap_properties->Type);
|
||||||
return ~0u;
|
return ~0u;
|
||||||
|
Loading…
Reference in New Issue
Block a user