summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/TextureCacheBase.h
diff options
context:
space:
mode:
authorStenzek <stenzek@gmail.com>2019-01-19 23:23:18 +1000
committerStenzek <stenzek@gmail.com>2019-01-19 23:23:21 +1000
commitade255a5ffafd69255f3387fe7e0a1a7b4bd6eec (patch)
treef60e40377f3f82132f732f96161d93fd5c201086 /Source/Core/VideoCommon/TextureCacheBase.h
parent6bfe4c83a5e56b46202af390be08c61e9f7d0082 (diff)
TextureCache: Fix broken XFB stitching with stereoscopy is enabled
Diffstat (limited to 'Source/Core/VideoCommon/TextureCacheBase.h')
-rw-r--r--Source/Core/VideoCommon/TextureCacheBase.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/Source/Core/VideoCommon/TextureCacheBase.h b/Source/Core/VideoCommon/TextureCacheBase.h
index c797a9a4f0..fc9c49311b 100644
--- a/Source/Core/VideoCommon/TextureCacheBase.h
+++ b/Source/Core/VideoCommon/TextureCacheBase.h
@@ -250,11 +250,9 @@ public:
u32 tmem_address_even, u32 tmem_address_odd, u32 tlutaddr,
TLUTFormat tlutfmt, u32 levels);
TCacheEntry* GetXFBFromCache(const TextureLookupInformation& tex_info);
- bool LoadTextureFromOverlappingTextures(TCacheEntry* entry_to_update,
- const TextureLookupInformation& tex_info);
- TCacheEntry* CreateNormalTexture(const TextureLookupInformation& tex_info);
- void LoadTextureFromMemory(TCacheEntry* entry_to_update,
- const TextureLookupInformation& tex_info);
+ TCacheEntry* GetTextureFromOverlappingTextures(const TextureLookupInformation& tex_info);
+ TCacheEntry* GetTextureFromMemory(const TextureLookupInformation& tex_info);
+ TCacheEntry* CreateNormalTexture(const TextureLookupInformation& tex_info, u32 layers);
void LoadTextureLevelZeroFromMemory(TCacheEntry* entry_to_update,
const TextureLookupInformation& tex_info, bool decode_on_gpu);
virtual void BindTextures();