summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexManagerBase.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-09-06 18:57:58 -0400
committerLioncash <mathew1800@gmail.com>2016-12-09 16:50:37 -0500
commit58a53951735aba77899ea8f8910a6b68dc52449a (patch)
tree48feeeeb9ce83b66213cf37d4c605ef1d5595244 /Source/Core/VideoCommon/VertexManagerBase.cpp
parent1fa61af41329652ee92030825f9347d3d3f7ce93 (diff)
TextureCacheBase: Eliminate static state
Diffstat (limited to 'Source/Core/VideoCommon/VertexManagerBase.cpp')
-rw-r--r--Source/Core/VideoCommon/VertexManagerBase.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/VertexManagerBase.cpp b/Source/Core/VideoCommon/VertexManagerBase.cpp
index ab4dced0e9..4ff4c2c528 100644
--- a/Source/Core/VideoCommon/VertexManagerBase.cpp
+++ b/Source/Core/VideoCommon/VertexManagerBase.cpp
@@ -214,10 +214,10 @@ void VertexManagerBase::Flush()
if (bpmem.tevind[i].IsActive() && bpmem.tevind[i].bt < bpmem.genMode.numindstages)
usedtextures[bpmem.tevindref.getTexMap(bpmem.tevind[i].bt)] = true;
- TextureCacheBase::UnbindTextures();
+ g_texture_cache->UnbindTextures();
for (unsigned int i : usedtextures)
{
- const TextureCacheBase::TCacheEntryBase* tentry = TextureCacheBase::Load(i);
+ const auto* tentry = g_texture_cache->Load(i);
if (tentry)
{