summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/y2r_u.cpp
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-12-07 02:56:45 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-12-07 04:08:37 +0100
commit03835d04f42fdcd480b5f5d909b5e5cd81ed62a0 (patch)
tree6e14cebd99073538bfafdd68d2bc5b41ff38b698 /src/core/hle/service/y2r_u.cpp
parentOpenGL: Rename cache functions to better match what they actually do (diff)
downloadyuzu-03835d04f42fdcd480b5f5d909b5e5cd81ed62a0.tar
yuzu-03835d04f42fdcd480b5f5d909b5e5cd81ed62a0.tar.gz
yuzu-03835d04f42fdcd480b5f5d909b5e5cd81ed62a0.tar.bz2
yuzu-03835d04f42fdcd480b5f5d909b5e5cd81ed62a0.tar.lz
yuzu-03835d04f42fdcd480b5f5d909b5e5cd81ed62a0.tar.xz
yuzu-03835d04f42fdcd480b5f5d909b5e5cd81ed62a0.tar.zst
yuzu-03835d04f42fdcd480b5f5d909b5e5cd81ed62a0.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/y2r_u.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/y2r_u.cpp b/src/core/hle/service/y2r_u.cpp
index 6b1b71fe4..face1d7b0 100644
--- a/src/core/hle/service/y2r_u.cpp
+++ b/src/core/hle/service/y2r_u.cpp
@@ -267,7 +267,7 @@ static void StartConversion(Service::Interface* self) {
// dst_image_size would seem to be perfect for this, but it doesn't include the gap :(
u32 total_output_size = conversion.input_lines *
(conversion.dst.transfer_unit + conversion.dst.gap);
- VideoCore::g_renderer->hw_rasterizer->NotifyFlush(
+ VideoCore::g_renderer->hw_rasterizer->InvalidateRegion(
Memory::VirtualToPhysicalAddress(conversion.dst.address), total_output_size);
LOG_DEBUG(Service_Y2R, "called");