summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/TextureCacheBase.h
diff options
context:
space:
mode:
authorStenzek <stenzek@gmail.com>2019-03-31 14:42:38 +1000
committerStenzek <stenzek@gmail.com>2019-04-21 12:41:15 +1000
commit3791262d9610d711ed5e157951feedade1c2eb43 (patch)
tree97bebeeb61052b6e6b2c40edd86d440eecfffd58 /Source/Core/VideoCommon/TextureCacheBase.h
parent708bd3d9f7f375fba750561758abab77c99fa0af (diff)
TextureCache: Use linear filtering on y-scaled and >1xIR VRAM copies
Diffstat (limited to 'Source/Core/VideoCommon/TextureCacheBase.h')
-rw-r--r--Source/Core/VideoCommon/TextureCacheBase.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/VideoCommon/TextureCacheBase.h b/Source/Core/VideoCommon/TextureCacheBase.h
index 980b864aa1..c33dd4b7df 100644
--- a/Source/Core/VideoCommon/TextureCacheBase.h
+++ b/Source/Core/VideoCommon/TextureCacheBase.h
@@ -243,13 +243,13 @@ protected:
virtual void 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 EFBRectangle& src_rect, bool scale_by_half, bool linear_filter,
+ float y_scale, float gamma, bool clamp_top, bool clamp_bottom,
const EFBCopyFilterCoefficients& filter_coefficients);
virtual void CopyEFBToCacheEntry(TCacheEntry* entry, bool is_depth_copy,
const EFBRectangle& src_rect, bool scale_by_half,
- EFBCopyFormat dst_format, bool is_intensity, float gamma,
- bool clamp_top, bool clamp_bottom,
+ bool linear_filter, EFBCopyFormat dst_format, bool is_intensity,
+ float gamma, bool clamp_top, bool clamp_bottom,
const EFBCopyFilterCoefficients& filter_coefficients);
alignas(16) u8* temp = nullptr;