summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/formatter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/texture_cache/formatter.cpp')
-rw-r--r--src/video_core/texture_cache/formatter.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/texture_cache/formatter.cpp b/src/video_core/texture_cache/formatter.cpp
index 418890126..30f72361d 100644
--- a/src/video_core/texture_cache/formatter.cpp
+++ b/src/video_core/texture_cache/formatter.cpp
@@ -22,6 +22,9 @@ std::string Name(const ImageBase& image) {
const u32 num_layers = image.info.resources.layers;
const u32 num_levels = image.info.resources.levels;
std::string resource;
+ if (image.info.num_samples > 1) {
+ resource += fmt::format(":{}xMSAA", image.info.num_samples);
+ }
if (num_layers > 1) {
resource += fmt::format(":L{}", num_layers);
}