summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-10-18 02:32:29 +0200
committerbunnei <bunneidev@gmail.com>2018-10-19 04:41:12 +0200
commit6b333d862bf220e912364dfff2e337449a5e0e0a (patch)
tree70e9b778add738860c8d5334c767afa469142d37 /src/video_core/engines
parentMerge pull request #1523 from lioncash/lock (diff)
downloadyuzu-6b333d862bf220e912364dfff2e337449a5e0e0a.tar
yuzu-6b333d862bf220e912364dfff2e337449a5e0e0a.tar.gz
yuzu-6b333d862bf220e912364dfff2e337449a5e0e0a.tar.bz2
yuzu-6b333d862bf220e912364dfff2e337449a5e0e0a.tar.lz
yuzu-6b333d862bf220e912364dfff2e337449a5e0e0a.tar.xz
yuzu-6b333d862bf220e912364dfff2e337449a5e0e0a.tar.zst
yuzu-6b333d862bf220e912364dfff2e337449a5e0e0a.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/fermi_2d.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/video_core/engines/fermi_2d.cpp b/src/video_core/engines/fermi_2d.cpp
index 597b279b9..74e44c7fe 100644
--- a/src/video_core/engines/fermi_2d.cpp
+++ b/src/video_core/engines/fermi_2d.cpp
@@ -47,9 +47,12 @@ void Fermi2D::HandleSurfaceCopy() {
u32 dst_bytes_per_pixel = RenderTargetBytesPerPixel(regs.dst.format);
if (!rasterizer.AccelerateSurfaceCopy(regs.src, regs.dst)) {
- // TODO(bunnei): The below implementation currently will not get hit, as
- // AccelerateSurfaceCopy tries to always copy and will always return success. This should be
- // changed once we properly support flushing.
+ rasterizer.FlushRegion(source_cpu, src_bytes_per_pixel * regs.src.width * regs.src.height);
+ // We have to invalidate the destination region to evict any outdated surfaces from the
+ // cache. We do this before actually writing the new data because the destination address
+ // might contain a dirty surface that will have to be written back to memory.
+ rasterizer.InvalidateRegion(dest_cpu,
+ dst_bytes_per_pixel * regs.dst.width * regs.dst.height);
if (regs.src.linear == regs.dst.linear) {
// If the input layout and the output layout are the same, just perform a raw copy.