diff options
| author | Stenzek <stenzek@gmail.com> | 2018-11-03 00:17:00 +1000 |
|---|---|---|
| committer | Stenzek <stenzek@gmail.com> | 2018-11-07 16:25:01 +1000 |
| commit | 8e2c063d6219b01037d1cb5bdb009000e52d8479 (patch) | |
| tree | f288e47b45fb22b61209dd57f657abd148fa40d9 /Source/Core/VideoBackends/D3D/TextureCache.cpp | |
| parent | 710b893b914bcc1e812f1a63fdb9a143ff682561 (diff) | |
TextureCache: Implement deferred/batched EFB copies
Diffstat (limited to 'Source/Core/VideoBackends/D3D/TextureCache.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/D3D/TextureCache.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/D3D/TextureCache.cpp b/Source/Core/VideoBackends/D3D/TextureCache.cpp index 41ad435817..f17d12f4c3 100644 --- a/Source/Core/VideoBackends/D3D/TextureCache.cpp +++ b/Source/Core/VideoBackends/D3D/TextureCache.cpp @@ -31,8 +31,8 @@ namespace DX11 { static std::unique_ptr<PSTextureEncoder> g_encoder; -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) |
