diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2020-04-15 17:06:55 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 17:06:55 -0300 |
commit | 65cbb122ead45a8683c6edd47a83aa8762a4e05b (patch) | |
tree | 6442abd171353be4d57c4f46a060305b037855f7 /src | |
parent | e33196d4e7687dd29636decd4b52e01b10fe8984 (diff) | |
parent | 6789d88a9c9dd4dd7f62d0a8a6291771499590a6 (diff) |
Merge pull request #3649 from FernandoS27/3d-fix
Texture Cache: Read current data when flushing a 3D segment.
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/texture_cache/surface_base.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/video_core/texture_cache/surface_base.cpp b/src/video_core/texture_cache/surface_base.cpp index 7af0e792c..715f39d0d 100644 --- a/src/video_core/texture_cache/surface_base.cpp +++ b/src/video_core/texture_cache/surface_base.cpp @@ -248,8 +248,14 @@ void SurfaceBaseImpl::FlushBuffer(Tegra::MemoryManager& memory_manager, // Use an extra temporal buffer auto& tmp_buffer = staging_cache.GetBuffer(1); + // Special case for 3D Texture Segments + const bool must_read_current_data = + params.block_depth > 0 && params.target == VideoCore::Surface::SurfaceTarget::Texture2D; tmp_buffer.resize(guest_memory_size); host_ptr = tmp_buffer.data(); + if (must_read_current_data) { + memory_manager.ReadBlockUnsafe(gpu_addr, host_ptr, guest_memory_size); + } if (params.is_tiled) { ASSERT_MSG(params.block_width == 0, "Block width is defined as {}", params.block_width); |