mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-04-24 02:32:18 +00:00
Add display of VK_MEMORY_HEAP_MULTI_INSTANCE_BIT to Vulkan_PrintHeapInfo console command
(cherry picked from commit 794d8e52c81448c09b537b4b9b9767d69dbfc563)
This commit is contained in:
parent
552ada02d7
commit
6d41dae922
1 changed files with 4 additions and 0 deletions
|
@ -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 )
|
||||
|
|
Loading…
Reference in a new issue