summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Null/TextureCache.h
diff options
context:
space:
mode:
authordegasus <wickmarkus@web.de>2016-12-26 21:33:57 +0100
committerdegasus <wickmarkus@web.de>2016-12-26 22:10:32 +0100
commitabf9bb170bf954220a50921a10f57eaa30e17779 (patch)
tree426fe0f2604b147b4869ff9b3e87706a24c3d3a9 /Source/Core/VideoBackends/Null/TextureCache.h
parent04f319066dd13917dc652855eec3614bc79c56f7 (diff)
TextureCache: Drop unused parameter in backend API.
Diffstat (limited to 'Source/Core/VideoBackends/Null/TextureCache.h')
-rw-r--r--Source/Core/VideoBackends/Null/TextureCache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/Null/TextureCache.h b/Source/Core/VideoBackends/Null/TextureCache.h
index cf6d60846e..ff21422e69 100644
--- a/Source/Core/VideoBackends/Null/TextureCache.h
+++ b/Source/Core/VideoBackends/Null/TextureCache.h
@@ -32,8 +32,8 @@ private:
TCacheEntry(const TCacheEntryConfig& _config) : TCacheEntryBase(_config) {}
~TCacheEntry() {}
void Load(const u8* buffer, u32 width, u32 height, u32 expanded_width, u32 level) override {}
- void FromRenderTarget(u8* dst, bool is_depth_copy, const EFBRectangle& src_rect,
- bool scale_by_half, unsigned int cbufid, const float* colmat) override
+ void FromRenderTarget(bool is_depth_copy, const EFBRectangle& src_rect, bool scale_by_half,
+ unsigned int cbufid, const float* colmat) override
{
}