diff --git a/src/video_core/renderer_vulkan/vk_texture_cache.cpp b/src/video_core/renderer_vulkan/vk_texture_cache.cpp index e1eef5f95a..e71937d84b 100644 --- a/src/video_core/renderer_vulkan/vk_texture_cache.cpp +++ b/src/video_core/renderer_vulkan/vk_texture_cache.cpp @@ -1607,8 +1607,8 @@ Image::Image(TextureCacheRuntime& runtime_, const ImageInfo& info_, GPUVAddr gpu : std::nullopt)), aspect_mask(ImageAspectMask(info.format)) { if (info.num_samples > 1) { - LOG_INFO(Render_Vulkan, "MSAA image created: format={} samples={} {}x{} aspect={:#x}", - info.format, info.num_samples, info.size.width, info.size.height, aspect_mask); + LOG_CRITICAL(Render_Vulkan, "MSAA image created: format={} samples={} {}x{} aspect={:#x}", + info.format, info.num_samples, info.size.width, info.size.height, aspect_mask); } if (IsPixelFormatASTC(info.format) && !runtime->device.IsOptimalAstcSupported()) { switch (Settings::values.accelerate_astc.GetValue()) { diff --git a/src/video_core/texture_cache/image_info.cpp b/src/video_core/texture_cache/image_info.cpp index ef02972209..1fe50f6759 100644 --- a/src/video_core/texture_cache/image_info.cpp +++ b/src/video_core/texture_cache/image_info.cpp @@ -165,6 +165,10 @@ ImageInfo::ImageInfo(const Maxwell3D::Regs::RenderTargetConfig& ct, layer_stride = ct.array_pitch * 4; maybe_unaligned_layer_stride = layer_stride; num_samples = NumSamples(msaa_mode); + if (num_samples > 1) { + LOG_CRITICAL(HW_GPU, "Guest color RT requests MSAA: samples={} {}x{}", num_samples, + size.width, size.height); + } block = Extent3D{ .width = ct.tile_mode.block_width, .height = ct.tile_mode.block_height, @@ -195,6 +199,10 @@ ImageInfo::ImageInfo(const Maxwell3D::Regs::Zeta& zt, const Maxwell3D::Regs::Zet layer_stride = zt.array_pitch * 4; maybe_unaligned_layer_stride = layer_stride; num_samples = NumSamples(msaa_mode); + if (num_samples > 1) { + LOG_CRITICAL(HW_GPU, "Guest depth RT requests MSAA: samples={} {}x{}", num_samples, + size.width, size.height); + } block = Extent3D{ .width = zt.tile_mode.block_width, .height = zt.tile_mode.block_height,