summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Null/TextureCache.h
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/VideoBackends/Null/TextureCache.h
parent1fa61af41329652ee92030825f9347d3d3f7ce93 (diff)
TextureCacheBase: Eliminate static state
Diffstat (limited to 'Source/Core/VideoBackends/Null/TextureCache.h')
-rw-r--r--Source/Core/VideoBackends/Null/TextureCache.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/Core/VideoBackends/Null/TextureCache.h b/Source/Core/VideoBackends/Null/TextureCache.h
index 7c51133c6a..886217e91f 100644
--- a/Source/Core/VideoBackends/Null/TextureCache.h
+++ b/Source/Core/VideoBackends/Null/TextureCache.h
@@ -31,11 +31,7 @@ private:
{
TCacheEntry(const TCacheEntryConfig& _config) : TCacheEntryBase(_config) {}
~TCacheEntry() {}
- void Load(unsigned int width, unsigned int height, unsigned int expanded_width,
- unsigned int level) override
- {
- }
-
+ void Load(const u8* buffer, u32 width, u32 height, u32 expanded_width, u32 level) override {}
void FromRenderTarget(u8* dst, PEControl::PixelFormat src_format, const EFBRectangle& src_rect,
bool scale_by_half, unsigned int cbufid, const float* colmat) override
{