[vulkan] Report the memory type used for resources

Needed for verifying the desired heap was used.
This commit is contained in:
Bill Currie 2023-12-05 16:45:19 +09:00
parent 63e66e81c5
commit df51e1a18d

View file

@ -170,6 +170,8 @@ QFV_CreateResource (qfv_device_t *device, qfv_resource_t *resource)
if ((req.memoryTypeBits & (1 << type))
&& ((memprops->memoryTypes[type].propertyFlags & properties)
== properties)) {
Sys_MaskPrintf (SYS_vulkan, "QFV_CreateResource: %s:mti: %d\n",
resource->name, type);
VkMemoryAllocateInfo allocate_info = {
.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO,
.allocationSize = size,