summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/SWmain.cpp
diff options
context:
space:
mode:
authorMat M <mathew1800@gmail.com>2016-12-23 04:33:42 -0500
committerGitHub <noreply@github.com>2016-12-23 04:33:42 -0500
commit9160be50dbfa31073eda0148378786f69b219805 (patch)
tree579bca3b98e8dd47ec3b18911504a669a2853cf9 /Source/Core/VideoBackends/Software/SWmain.cpp
parentf2322bee90c1bd973a6cc4e99d4df78c7d2d0027 (diff)
parent58a53951735aba77899ea8f8910a6b68dc52449a (diff)
Merge pull request #4224 from lioncash/tcache
TextureCacheBase: Eliminate static state
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/SWmain.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp
index 1ecd9517c8..44d0475ca9 100644
--- a/Source/Core/VideoBackends/Software/SWmain.cpp
+++ b/Source/Core/VideoBackends/Software/SWmain.cpp
@@ -64,11 +64,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 srcFormat, const EFBRectangle& srcRect,
bool scaleByHalf, unsigned int cbufid, const float* colmat) override
{