summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/image_base.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-03-26 20:38:30 +0100
committerGitHub <noreply@github.com>2022-03-26 20:38:30 +0100
commitaf04f8b8e958a79471d58bc21745f0e8b9b2ea75 (patch)
tree65e18a33eda02f6a18cb32b5f492aa72fca0ed2a /src/video_core/texture_cache/image_base.h
parentMerge pull request #8041 from Morph1984/inline-swkbd (diff)
downloadyuzu-af04f8b8e958a79471d58bc21745f0e8b9b2ea75.tar
yuzu-af04f8b8e958a79471d58bc21745f0e8b9b2ea75.tar.gz
yuzu-af04f8b8e958a79471d58bc21745f0e8b9b2ea75.tar.bz2
yuzu-af04f8b8e958a79471d58bc21745f0e8b9b2ea75.tar.lz
yuzu-af04f8b8e958a79471d58bc21745f0e8b9b2ea75.tar.xz
yuzu-af04f8b8e958a79471d58bc21745f0e8b9b2ea75.tar.zst
yuzu-af04f8b8e958a79471d58bc21745f0e8b9b2ea75.zip
Diffstat (limited to '')
-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)