summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/D3D/PSTextureEncoder.cpp
diff options
context:
space:
mode:
authorLeo Lam <leolino.lam@gmail.com>2017-08-10 17:10:26 +0800
committerGitHub <noreply@github.com>2017-08-10 17:10:26 +0800
commite41a9905c01db496b6a4c2756e1814c7a4cffab0 (patch)
tree2539056ddbbb6c5237072c0c456d2d39d2ba5522 /Source/Core/VideoBackends/D3D/PSTextureEncoder.cpp
parentd0304c9b38faa2184c720173d22a42cd389aa21f (diff)
parent1fc910b3ea9eafcc3cc5132bdfc51731ba5fa9fd (diff)
Merge pull request #5744 from JosJuice/remove-non-integer-irs
Remove non-integer IRs
Diffstat (limited to 'Source/Core/VideoBackends/D3D/PSTextureEncoder.cpp')
-rw-r--r--Source/Core/VideoBackends/D3D/PSTextureEncoder.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoBackends/D3D/PSTextureEncoder.cpp b/Source/Core/VideoBackends/D3D/PSTextureEncoder.cpp
index 51a7dfda08..b89e812879 100644
--- a/Source/Core/VideoBackends/D3D/PSTextureEncoder.cpp
+++ b/Source/Core/VideoBackends/D3D/PSTextureEncoder.cpp
@@ -128,10 +128,10 @@ void PSTextureEncoder::Encode(u8* dst, const EFBCopyParams& params, u32 native_w
D3D::stateman->SetPixelConstants(m_encodeParams);
// We also linear filtering for both box filtering and downsampling higher resolutions to 1x
- // TODO: This only produces perfect downsampling for 1.5x and 2x IR, other resolution will
- // need more complex down filtering to average all pixels and produce the correct result.
+ // TODO: This only produces perfect downsampling for 2x IR, other resolutions will need more
+ // complex down filtering to average all pixels and produce the correct result.
// Also, box filtering won't be correct for anything other than 1x IR
- if (scale_by_half || g_ActiveConfig.iEFBScale != SCALE_1X)
+ if (scale_by_half || g_ActiveConfig.iEFBScale != 1)
D3D::SetLinearCopySampler();
else
D3D::SetPointCopySampler();