summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/TextureCacheBase.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/VideoCommon/TextureCacheBase.h')
-rw-r--r--Source/Core/VideoCommon/TextureCacheBase.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/Source/Core/VideoCommon/TextureCacheBase.h b/Source/Core/VideoCommon/TextureCacheBase.h
index c45894320c..e3eb6a00fa 100644
--- a/Source/Core/VideoCommon/TextureCacheBase.h
+++ b/Source/Core/VideoCommon/TextureCacheBase.h
@@ -116,13 +116,12 @@ public:
protected:
TextureCache();
- static GC_ALIGNED16(u8 *temp);
- static unsigned int temp_size;
+ static GC_ALIGNED16(u8 *temp);
+ static size_t temp_size;
private:
- static bool CheckForCustomTextureLODs(u64 tex_hash, int texformat, unsigned int levels);
- static PC_TexFormat LoadCustomTexture(u64 tex_hash, int texformat, unsigned int level, unsigned int* width, unsigned int* height);
- static void DumpTexture(TCacheEntryBase* entry, unsigned int level);
+ static void DumpTexture(TCacheEntryBase* entry, std::string basename, unsigned int level);
+ static void CheckTempSize(size_t required_size);
static TCacheEntryBase* AllocateRenderTarget(unsigned int width, unsigned int height);
static void FreeRenderTarget(TCacheEntryBase* entry);