summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/OGL/TextureCache.cpp
diff options
context:
space:
mode:
authorStenzek <stenzek@gmail.com>2018-11-03 00:17:00 +1000
committerStenzek <stenzek@gmail.com>2018-11-07 16:25:01 +1000
commit8e2c063d6219b01037d1cb5bdb009000e52d8479 (patch)
treef288e47b45fb22b61209dd57f657abd148fa40d9 /Source/Core/VideoBackends/OGL/TextureCache.cpp
parent710b893b914bcc1e812f1a63fdb9a143ff682561 (diff)
TextureCache: Implement deferred/batched EFB copies
Diffstat (limited to 'Source/Core/VideoBackends/OGL/TextureCache.cpp')
-rw-r--r--Source/Core/VideoBackends/OGL/TextureCache.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/OGL/TextureCache.cpp b/Source/Core/VideoBackends/OGL/TextureCache.cpp
index 10f191448e..4fbbb39935 100644
--- a/Source/Core/VideoBackends/OGL/TextureCache.cpp
+++ b/Source/Core/VideoBackends/OGL/TextureCache.cpp
@@ -159,8 +159,8 @@ void main()
//#define TIME_TEXTURE_DECODING 1
-void TextureCache::CopyEFB(u8* dst, const EFBCopyParams& params, u32 native_width,
- u32 bytes_per_row, u32 num_blocks_y, u32 memory_stride,
+void TextureCache::CopyEFB(AbstractStagingTexture* dst, const EFBCopyParams& params,
+ u32 native_width, u32 bytes_per_row, u32 num_blocks_y, u32 memory_stride,
const EFBRectangle& src_rect, bool scale_by_half, float y_scale,
float gamma, bool clamp_top, bool clamp_bottom,
const CopyFilterCoefficientArray& filter_coefficients)