summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/image_base.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2021-07-18 18:40:14 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-11-16 22:11:27 +0100
commit22f4b290b6f0894d29302102f539dd8753961f04 (patch)
treed0777996569139bb07a152bedd03509951da0402 /src/video_core/texture_cache/image_base.h
parentMerge pull request #7326 from ameerj/vp8 (diff)
downloadyuzu-22f4b290b6f0894d29302102f539dd8753961f04.tar
yuzu-22f4b290b6f0894d29302102f539dd8753961f04.tar.gz
yuzu-22f4b290b6f0894d29302102f539dd8753961f04.tar.bz2
yuzu-22f4b290b6f0894d29302102f539dd8753961f04.tar.lz
yuzu-22f4b290b6f0894d29302102f539dd8753961f04.tar.xz
yuzu-22f4b290b6f0894d29302102f539dd8753961f04.tar.zst
yuzu-22f4b290b6f0894d29302102f539dd8753961f04.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/texture_cache/image_base.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/texture_cache/image_base.h b/src/video_core/texture_cache/image_base.h
index 0c17a791b..1cd30fd37 100644
--- a/src/video_core/texture_cache/image_base.h
+++ b/src/video_core/texture_cache/image_base.h
@@ -33,6 +33,10 @@ enum class ImageFlagBits : u32 {
///< garbage collection priority
Alias = 1 << 11, ///< This image has aliases and has priority on garbage
///< collection
+
+ // Rescaler
+ Rescaled = 1 << 12,
+ RescaleChecked = 1 << 13,
};
DECLARE_ENUM_FLAG_OPERATORS(ImageFlagBits)