summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/image_base.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2021-06-13 03:34:06 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-07-04 22:32:35 +0200
commitfd98fcf7f00d096322ccfaa1e35a314b4d698efd (patch)
tree90fe2a180845d1c28ad3996264188f6ae4aa9f11 /src/video_core/texture_cache/image_base.h
parentTexture Cache: Initial Implementation of Sparse Textures. (diff)
downloadyuzu-fd98fcf7f00d096322ccfaa1e35a314b4d698efd.tar
yuzu-fd98fcf7f00d096322ccfaa1e35a314b4d698efd.tar.gz
yuzu-fd98fcf7f00d096322ccfaa1e35a314b4d698efd.tar.bz2
yuzu-fd98fcf7f00d096322ccfaa1e35a314b4d698efd.tar.lz
yuzu-fd98fcf7f00d096322ccfaa1e35a314b4d698efd.tar.xz
yuzu-fd98fcf7f00d096322ccfaa1e35a314b4d698efd.tar.zst
yuzu-fd98fcf7f00d096322ccfaa1e35a314b4d698efd.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/texture_cache/image_base.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_core/texture_cache/image_base.h b/src/video_core/texture_cache/image_base.h
index 004ec23e4..fd14a3980 100644
--- a/src/video_core/texture_cache/image_base.h
+++ b/src/video_core/texture_cache/image_base.h
@@ -25,11 +25,12 @@ enum class ImageFlagBits : u32 {
Strong = 1 << 5, ///< Exists in the image table, the dimensions are can be trusted
Registered = 1 << 6, ///< True when the image is registered
Picked = 1 << 7, ///< Temporary flag to mark the image as picked
+ Remapped = 1 << 8, ///< Image has been remapped.
// Garbage Collection Flags
- BadOverlap = 1 << 8, ///< This image overlaps other but doesn't fit, has higher
+ BadOverlap = 1 << 9, ///< This image overlaps other but doesn't fit, has higher
///< garbage collection priority
- Alias = 1 << 9, ///< This image has aliases and has priority on garbage
+ Alias = 1 << 10, ///< This image has aliases and has priority on garbage
///< collection
};
DECLARE_ENUM_FLAG_OPERATORS(ImageFlagBits)