diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2023-12-31 21:00:01 +0100 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2023-12-31 21:00:01 +0100 |
commit | d07397931a167004ea191ef275d11b8a02aa4fb7 (patch) | |
tree | 280950f6f82957d507594190ecec3edc561d885a /src/video_core/engines | |
parent | Merge pull request #12479 from GPUCode/linear-bcn (diff) | |
download | yuzu-d07397931a167004ea191ef275d11b8a02aa4fb7.tar yuzu-d07397931a167004ea191ef275d11b8a02aa4fb7.tar.gz yuzu-d07397931a167004ea191ef275d11b8a02aa4fb7.tar.bz2 yuzu-d07397931a167004ea191ef275d11b8a02aa4fb7.tar.lz yuzu-d07397931a167004ea191ef275d11b8a02aa4fb7.tar.xz yuzu-d07397931a167004ea191ef275d11b8a02aa4fb7.tar.zst yuzu-d07397931a167004ea191ef275d11b8a02aa4fb7.zip |
Diffstat (limited to 'src/video_core/engines')
-rw-r--r-- | src/video_core/engines/maxwell_dma.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_dma.cpp b/src/video_core/engines/maxwell_dma.cpp index 422d4d859..56fbff306 100644 --- a/src/video_core/engines/maxwell_dma.cpp +++ b/src/video_core/engines/maxwell_dma.cpp @@ -228,7 +228,7 @@ void MaxwellDMA::CopyBlockLinearToPitch() { Core::Memory::GpuGuestMemory<u8, Core::Memory::GuestMemoryFlags::SafeRead> tmp_read_buffer( memory_manager, src_operand.address, src_size, &read_buffer); - Core::Memory::GpuGuestMemoryScoped<u8, Core::Memory::GuestMemoryFlags::SafeReadCachedWrite> + Core::Memory::GpuGuestMemoryScoped<u8, Core::Memory::GuestMemoryFlags::UnsafeReadCachedWrite> tmp_write_buffer(memory_manager, dst_operand.address, dst_size, &write_buffer); UnswizzleSubrect(tmp_write_buffer, tmp_read_buffer, bytes_per_pixel, width, height, depth, @@ -292,7 +292,7 @@ void MaxwellDMA::CopyPitchToBlockLinear() { GPUVAddr dst_addr = regs.offset_out; Core::Memory::GpuGuestMemory<u8, Core::Memory::GuestMemoryFlags::SafeRead> tmp_read_buffer( memory_manager, src_addr, src_size, &read_buffer); - Core::Memory::GpuGuestMemoryScoped<u8, Core::Memory::GuestMemoryFlags::SafeReadCachedWrite> + Core::Memory::GpuGuestMemoryScoped<u8, Core::Memory::GuestMemoryFlags::UnsafeReadCachedWrite> tmp_write_buffer(memory_manager, dst_addr, dst_size, &write_buffer); // If the input is linear and the output is tiled, swizzle the input and copy it over. |