summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/image_base.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2022-01-16 06:34:43 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2022-03-25 01:51:52 +0100
commit9edbbf2af401f821c0be6a266e65975e3de25fb3 (patch)
tree16bc11bc0097e80e8b39e7cc990a81448f7bf059 /src/video_core/texture_cache/image_base.h
parentBuffer Cache: Tune to the levels of the new GC. (diff)
downloadyuzu-9edbbf2af401f821c0be6a266e65975e3de25fb3.tar
yuzu-9edbbf2af401f821c0be6a266e65975e3de25fb3.tar.gz
yuzu-9edbbf2af401f821c0be6a266e65975e3de25fb3.tar.bz2
yuzu-9edbbf2af401f821c0be6a266e65975e3de25fb3.tar.lz
yuzu-9edbbf2af401f821c0be6a266e65975e3de25fb3.tar.xz
yuzu-9edbbf2af401f821c0be6a266e65975e3de25fb3.tar.zst
yuzu-9edbbf2af401f821c0be6a266e65975e3de25fb3.zip
Diffstat (limited to 'src/video_core/texture_cache/image_base.h')
-rw-r--r--src/video_core/texture_cache/image_base.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/video_core/texture_cache/image_base.h b/src/video_core/texture_cache/image_base.h
index 279f39269..dd0106432 100644
--- a/src/video_core/texture_cache/image_base.h
+++ b/src/video_core/texture_cache/image_base.h
@@ -29,11 +29,11 @@ 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
- GCProtected = 1 << 12, ///< Protected from low-tier GC as they are costy to load back.
+ 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
+ CostlyLoad = 1 << 12, ///< Protected from low-tier GC as it is costly to load back.
// Rescaler
Rescaled = 1 << 13,