From e8221d79482249b3ca6a2584e84e7d1ec7bb9061 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Wed, 5 Oct 2022 22:58:10 -0700 Subject: Common/PointerWrap: Remove DoPOD This was added in 385d8e2b15c8accce3b4e4b4f3dc90f63e3fbee4, but became somewhat redundant with Do in 4c7bbd96e435a7516b05d3e8c791ab41505e2e0f, and completely redundant now that std::is_trivially_copyable_v is well-supported. --- Source/Core/VideoCommon/TextureCacheBase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon/TextureCacheBase.cpp') diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp index b17f80ba6f..7e49df8040 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/TextureCacheBase.cpp @@ -440,7 +440,7 @@ void TextureCacheBase::SerializeTexture(AbstractTexture* tex, const TextureConfi { // If we're in measure mode, skip the actual readback to save some time. const bool skip_readback = p.IsMeasureMode(); - p.DoPOD(config); + p.Do(config); if (skip_readback || CheckReadbackTexture(config.width, config.height, config.format)) { -- cgit v1.2.3