summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/image_base.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2021-07-26 09:33:00 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-11-16 22:11:28 +0100
commit0e8cf38f392f2ea6f7f5195070ad721b78590c04 (patch)
tree8c2d1a12b351f1e0d89700cf60681d8743857521 /src/video_core/texture_cache/image_base.h
parentmain: Add resolution scale label in the status bar (diff)
downloadyuzu-0e8cf38f392f2ea6f7f5195070ad721b78590c04.tar
yuzu-0e8cf38f392f2ea6f7f5195070ad721b78590c04.tar.gz
yuzu-0e8cf38f392f2ea6f7f5195070ad721b78590c04.tar.bz2
yuzu-0e8cf38f392f2ea6f7f5195070ad721b78590c04.tar.lz
yuzu-0e8cf38f392f2ea6f7f5195070ad721b78590c04.tar.xz
yuzu-0e8cf38f392f2ea6f7f5195070ad721b78590c04.tar.zst
yuzu-0e8cf38f392f2ea6f7f5195070ad721b78590c04.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/texture_cache/image_base.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/texture_cache/image_base.h b/src/video_core/texture_cache/image_base.h
index 1cd30fd37..10dd52e28 100644
--- a/src/video_core/texture_cache/image_base.h
+++ b/src/video_core/texture_cache/image_base.h
@@ -37,6 +37,7 @@ enum class ImageFlagBits : u32 {
// Rescaler
Rescaled = 1 << 12,
RescaleChecked = 1 << 13,
+ Blacklisted = 1 << 14,
};
DECLARE_ENUM_FLAG_OPERATORS(ImageFlagBits)