texture_cache: detiler: more verbosity in print

This commit is contained in:
psucien 2024-06-07 00:11:34 +02:00
parent cfc297622f
commit e790ec775f
2 changed files with 18 additions and 2 deletions

View file

@ -299,8 +299,8 @@ bool TileManager::TryDetile(Image& image) {
const auto* detiler = GetDetiler(image);
if (!detiler) {
LOG_ERROR(Render_Vulkan, "Unsupported tiled image: {} {}",
vk::to_string(image.info.pixel_format), static_cast<u32>(image.info.tiling_mode));
LOG_ERROR(Render_Vulkan, "Unsupported tiled image: {} ({})",
vk::to_string(image.info.pixel_format), NameOf(image.info.tiling_mode));
return false;
}