From 81d9cce70c5a41b2791ab9cd5e69d4732becc34d Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Fri, 6 Nov 2015 01:28:05 +0100 Subject: VideoCommon: rename TextureCache to TextureCacheBase --- Source/Core/VideoCommon/VertexManagerBase.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Source/Core/VideoCommon/VertexManagerBase.cpp') diff --git a/Source/Core/VideoCommon/VertexManagerBase.cpp b/Source/Core/VideoCommon/VertexManagerBase.cpp index 973e93e9b4..84f24cd6e2 100644 --- a/Source/Core/VideoCommon/VertexManagerBase.cpp +++ b/Source/Core/VideoCommon/VertexManagerBase.cpp @@ -211,10 +211,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; - TextureCache::UnbindTextures(); + TextureCacheBase::UnbindTextures(); for (unsigned int i : usedtextures) { - const TextureCache::TCacheEntryBase* tentry = TextureCache::Load(i); + const TextureCacheBase::TCacheEntryBase* tentry = TextureCacheBase::Load(i); if (tentry) { @@ -226,7 +226,7 @@ void VertexManagerBase::Flush() ERROR_LOG(VIDEO, "error loading texture"); } } - TextureCache::BindTextures(); + TextureCacheBase::BindTextures(); } // set global vertex constants -- cgit v1.2.3