Add display of VK_MEMORY_HEAP_MULTI_INSTANCE_BIT to Vulkan_PrintHeapInfo console command

(cherry picked from commit 794d8e52c81448c09b537b4b9b9767d69dbfc563)
This commit is contained in:
Stephen Saunders 2022-02-01 01:15:40 -05:00
parent 552ada02d7
commit 6d41dae922

View file

@ -739,6 +739,10 @@ CONSOLE_COMMAND( Vulkan_PrintHeapInfo, "Print out the heap information for this
{
idLib::Printf( "HOST_VISIBLE" );
}
if( heap.flags & VK_MEMORY_HEAP_MULTI_INSTANCE_BIT )
{
idLib::Printf( ", MULTI_INSTANCE" );
}
idLib::Printf( "\n" );
for( uint32 j = 0; j < props.memoryTypeCount; ++j )