summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Vulkan/TextureCache.cpp
diff options
context:
space:
mode:
authorStenzek <stenzek@users.noreply.github.com>2016-11-20 12:34:11 +1000
committerGitHub <noreply@github.com>2016-11-20 12:34:11 +1000
commit3d21169dfc401e2ce92da9f32ce4740e82838c98 (patch)
treeb312d81e3443338ca82a9f527253c5e57fb549c8 /Source/Core/VideoBackends/Vulkan/TextureCache.cpp
parent2a5d22b3a7c9ba4a67107cbdbe3cbea87c6a2af2 (diff)
parentd6d33411834df82dea8e7c250925ccfe595e0cc2 (diff)
Merge pull request #4458 from stenzek/strided-xfb
D3D/Vulkan: Handle strided XFB copies
Diffstat (limited to 'Source/Core/VideoBackends/Vulkan/TextureCache.cpp')
-rw-r--r--Source/Core/VideoBackends/Vulkan/TextureCache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Vulkan/TextureCache.cpp b/Source/Core/VideoBackends/Vulkan/TextureCache.cpp
index d99200b203..d52ba671db 100644
--- a/Source/Core/VideoBackends/Vulkan/TextureCache.cpp
+++ b/Source/Core/VideoBackends/Vulkan/TextureCache.cpp
@@ -888,7 +888,7 @@ void TextureCache::EncodeYUYVTextureToMemory(void* dst_ptr, u32 dst_width, u32 d
m_rgb_to_yuyv_shader);
VkRect2D region = {{0, 0}, {output_width, dst_height}};
draw.BeginRenderPass(m_texture_encoder->GetEncodingTextureFramebuffer(), region);
- draw.SetPSSampler(0, src_texture->GetView(), g_object_cache->GetPointSampler());
+ draw.SetPSSampler(0, src_texture->GetView(), g_object_cache->GetLinearSampler());
draw.DrawQuad(0, 0, static_cast<int>(output_width), static_cast<int>(dst_height), src_rect.left,
src_rect.top, 0, src_rect.GetWidth(), src_rect.GetHeight(),
static_cast<int>(src_texture->GetWidth()),