summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/TextureCacheBase.h
diff options
context:
space:
mode:
authoriwubcode <iwubcode@users.noreply.github.com>2023-06-20 18:59:55 -0500
committeriwubcode <iwubcode@users.noreply.github.com>2023-06-20 18:59:55 -0500
commit2dc24a9148e1dc98ada6629fe6eebb673ceb336b (patch)
treee6c261040aa44c6996c858bb38dfc1224f9c96f0 /Source/Core/VideoCommon/TextureCacheBase.h
parent5ad2d86cc7b0356b7ea04e5bc9e50013fdf5a3b4 (diff)
VideoCommon: move cached texture asset to 'CustomAsset' common code
Diffstat (limited to 'Source/Core/VideoCommon/TextureCacheBase.h')
-rw-r--r--Source/Core/VideoCommon/TextureCacheBase.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/Source/Core/VideoCommon/TextureCacheBase.h b/Source/Core/VideoCommon/TextureCacheBase.h
index 766b21bc80..f248d2b49f 100644
--- a/Source/Core/VideoCommon/TextureCacheBase.h
+++ b/Source/Core/VideoCommon/TextureCacheBase.h
@@ -22,6 +22,7 @@
#include "Common/MathUtil.h"
#include "VideoCommon/AbstractTexture.h"
+#include "VideoCommon/Assets/CustomAsset.h"
#include "VideoCommon/BPMemory.h"
#include "VideoCommon/TextureConfig.h"
#include "VideoCommon/TextureDecoder.h"
@@ -115,12 +116,6 @@ struct fmt::formatter<EFBCopyParams>
}
};
-struct CachedTextureAsset
-{
- std::shared_ptr<VideoCommon::GameTextureAsset> m_asset;
- std::optional<std::filesystem::file_time_type> m_last_write_time;
-};
-
struct TCacheEntry
{
// common members
@@ -172,7 +167,7 @@ struct TCacheEntry
std::string texture_info_name = "";
- CachedTextureAsset linked_asset;
+ VideoCommon::CachedAsset<VideoCommon::GameTextureAsset> linked_asset;
explicit TCacheEntry(std::unique_ptr<AbstractTexture> tex,
std::unique_ptr<AbstractFramebuffer> fb);