aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/texture_cache/image_base.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-03-26 12:39:31 -0700
committerGitHub <noreply@github.com>2022-03-26 12:39:31 -0700
commite043cc0bc39def1596f9054c879dd0ef5a65be72 (patch)
tree65e18a33eda02f6a18cb32b5f492aa72fca0ed2a /src/video_core/texture_cache/image_base.h
parent664d8c87327770b03cdb62678a7e3bb22c8ca26f (diff)
parentaf04f8b8e958a79471d58bc21745f0e8b9b2ea75 (diff)
Merge pull request #8092 from yuzu-emu/revert-8080-yo-momma-so-fat-that
Revert "Memory GPU <-> CPU: reduce infighting in the texture cache by adding CPU Cached memory."
Diffstat (limited to 'src/video_core/texture_cache/image_base.h')
-rw-r--r--src/video_core/texture_cache/image_base.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/video_core/texture_cache/image_base.h b/src/video_core/texture_cache/image_base.h
index cc7999027..dd0106432 100644
--- a/src/video_core/texture_cache/image_base.h
+++ b/src/video_core/texture_cache/image_base.h
@@ -39,9 +39,6 @@ enum class ImageFlagBits : u32 {
Rescaled = 1 << 13,
CheckingRescalable = 1 << 14,
IsRescalable = 1 << 15,
-
- // Cached CPU
- CachedCpuModified = 1 << 16, ///< Contents have been modified from the CPU
};
DECLARE_ENUM_FLAG_OPERATORS(ImageFlagBits)