diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2022-10-06 21:55:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-06 21:55:26 +0200 |
| commit | 09c5b5856c5e6646e6043159ae14ae444824ebf3 (patch) | |
| tree | 040975cb3f45c688a838ab6b6223ee5455eaa8e7 /Source/Core/VideoCommon/TextureCacheBase.cpp | |
| parent | 7498eb1e6c4361040806965c63a7a6e06b3ec6bd (diff) | |
| parent | 4d33f6af7c0c7df7415ad0161a759e21173e71b0 (diff) | |
Merge pull request #11124 from Pokechu22/no-more-dopod
Common/PointerWrap: Remove DoPOD
Diffstat (limited to 'Source/Core/VideoCommon/TextureCacheBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/TextureCacheBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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)) { |
