mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
VideoCommon: rename TextureCache to TextureCacheBase
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user