mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-06 01:11:59 +00:00
[vulkan] Report the memory type used for resources
Needed for verifying the desired heap was used.
This commit is contained in:
parent
63e66e81c5
commit
df51e1a18d
1 changed files with 2 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue