[Vulkan] Include format/dimension in render texture debug name.
This commit is contained in:
parent
2d68ec162d
commit
6b2f75219c
|
@ -471,8 +471,10 @@ TextureCache::Texture* TextureCache::DemandResolveTexture(
|
||||||
reinterpret_cast<uint64_t>(texture->image),
|
reinterpret_cast<uint64_t>(texture->image),
|
||||||
VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT,
|
VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT,
|
||||||
xe::format_string(
|
xe::format_string(
|
||||||
"RT: 0x%.8X - 0x%.8X", texture_info.guest_address,
|
"RT: 0x%.8X - 0x%.8X (%s, %s)", texture_info.guest_address,
|
||||||
texture_info.guest_address + texture_info.GetByteSize(true)));
|
texture_info.guest_address + texture_info.GetByteSize(true),
|
||||||
|
texture_info.format_info()->name,
|
||||||
|
get_dimension_name(texture_info.dimension)));
|
||||||
|
|
||||||
// Setup an access watch. If this texture is touched, it is destroyed.
|
// Setup an access watch. If this texture is touched, it is destroyed.
|
||||||
texture->access_watch_handle = memory_->AddPhysicalAccessWatch(
|
texture->access_watch_handle = memory_->AddPhysicalAccessWatch(
|
||||||
|
|
Loading…
Reference in New Issue