diff options
| author | JMC47 <JMC4789@gmail.com> | 2021-10-11 23:11:43 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-11 23:11:43 -0400 |
| commit | 6987ea059648d1e74cba4aec2e69bba5890239e1 (patch) | |
| tree | 0b7a3481319c9383d2b1c2146299b0db29a99a8a /Source/Core/VideoCommon/VideoState.cpp | |
| parent | 3bfb3fa52b05868f2b7f3f768a3d80f9c4991158 (diff) | |
| parent | edb66dab8469736e5c2954fd3ffb9704de4542c3 (diff) | |
Merge pull request #8350 from phire/fix-tmem
Extend Minimal TMEM cache implementation.
Diffstat (limited to 'Source/Core/VideoCommon/VideoState.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoState.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/VideoState.cpp b/Source/Core/VideoCommon/VideoState.cpp index f954ca7c30..dc5ed9336e 100644 --- a/Source/Core/VideoCommon/VideoState.cpp +++ b/Source/Core/VideoCommon/VideoState.cpp @@ -13,6 +13,7 @@ #include "VideoCommon/PixelEngine.h" #include "VideoCommon/PixelShaderManager.h" #include "VideoCommon/RenderBase.h" +#include "VideoCommon/TMEM.h" #include "VideoCommon/TextureCacheBase.h" #include "VideoCommon/TextureDecoder.h" #include "VideoCommon/VertexManagerBase.h" @@ -46,6 +47,10 @@ void VideoCommon_DoState(PointerWrap& p) p.DoArray(texMem); p.DoMarker("texMem"); + // TMEM + TMEM::DoState(p); + p.DoMarker("TMEM"); + // FIFO Fifo::DoState(p); p.DoMarker("Fifo"); |
