summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/image_base.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2021-06-20 19:14:40 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-07-04 22:32:35 +0200
commita8a0927d424815d01782c6872a4c9ab605a87dbe (patch)
tree377585616778e1dd3fe423051442bd29bed02172 /src/video_core/texture_cache/image_base.h
parentTexture Cache: Address feedback. (diff)
downloadyuzu-a8a0927d424815d01782c6872a4c9ab605a87dbe.tar
yuzu-a8a0927d424815d01782c6872a4c9ab605a87dbe.tar.gz
yuzu-a8a0927d424815d01782c6872a4c9ab605a87dbe.tar.bz2
yuzu-a8a0927d424815d01782c6872a4c9ab605a87dbe.tar.lz
yuzu-a8a0927d424815d01782c6872a4c9ab605a87dbe.tar.xz
yuzu-a8a0927d424815d01782c6872a4c9ab605a87dbe.tar.zst
yuzu-a8a0927d424815d01782c6872a4c9ab605a87dbe.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/texture_cache/image_base.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/texture_cache/image_base.h b/src/video_core/texture_cache/image_base.h
index 65e68cbb3..ff1feda9b 100644
--- a/src/video_core/texture_cache/image_base.h
+++ b/src/video_core/texture_cache/image_base.h
@@ -29,10 +29,10 @@ enum class ImageFlagBits : u32 {
Sparse = 1 << 9, ///< Image has non continous submemory.
// Garbage Collection Flags
- BadOverlap = 1 << 10,///< This image overlaps other but doesn't fit, has higher
- ///< garbage collection priority
- Alias = 1 << 11, ///< This image has aliases and has priority on garbage
- ///< collection
+ BadOverlap = 1 << 10, ///< This image overlaps other but doesn't fit, has higher
+ ///< garbage collection priority
+ Alias = 1 << 11, ///< This image has aliases and has priority on garbage
+ ///< collection
};
DECLARE_ENUM_FLAG_OPERATORS(ImageFlagBits)