summaryrefslogtreecommitdiff
path: root/src/video_core/texture_cache
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2020-06-01 04:49:35 -0300
committerGravatar ReinUsesLisp2020-06-08 05:01:00 -0300
commit3c2ae53b4c574deb4f9afe3104c7d022c53c5281 (patch)
treea66e762e1fadaebdd05b7f13a6dade2ed5129aa6 /src/video_core/texture_cache
parenttexture_cache: Implement rendering to 3D textures (diff)
downloadyuzu-3c2ae53b4c574deb4f9afe3104c7d022c53c5281.tar.gz
yuzu-3c2ae53b4c574deb4f9afe3104c7d022c53c5281.tar.xz
yuzu-3c2ae53b4c574deb4f9afe3104c7d022c53c5281.zip
texture_cache: Handle 3D texture blits with one layer
Diffstat (limited to 'src/video_core/texture_cache')
-rw-r--r--src/video_core/texture_cache/surface_params.cpp4
-rw-r--r--src/video_core/texture_cache/texture_cache.h7
2 files changed, 8 insertions, 3 deletions
diff --git a/src/video_core/texture_cache/surface_params.cpp b/src/video_core/texture_cache/surface_params.cpp
index 642eeb850..6fe7c85ac 100644
--- a/src/video_core/texture_cache/surface_params.cpp
+++ b/src/video_core/texture_cache/surface_params.cpp
@@ -246,8 +246,8 @@ SurfaceParams SurfaceParams::CreateForFermiCopySurface(
246 params.width = config.width; 246 params.width = config.width;
247 params.height = config.height; 247 params.height = config.height;
248 params.pitch = config.pitch; 248 params.pitch = config.pitch;
249 // TODO(Rodrigo): Try to guess the surface target from depth and layer parameters 249 // TODO(Rodrigo): Try to guess texture arrays from parameters
250 params.target = SurfaceTarget::Texture2D; 250 params.target = params.block_depth > 0 ? SurfaceTarget::Texture3D : SurfaceTarget::Texture2D;
251 params.depth = 1; 251 params.depth = 1;
252 params.num_levels = 1; 252 params.num_levels = 1;
253 params.emulated_levels = 1; 253 params.emulated_levels = 1;
diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h
index 4ee0d76b9..60b95a854 100644
--- a/src/video_core/texture_cache/texture_cache.h
+++ b/src/video_core/texture_cache/texture_cache.h
@@ -755,6 +755,8 @@ private:
755 } 755 }
756 756
757 TSurface new_surface = GetUncachedSurface(gpu_addr, params); 757 TSurface new_surface = GetUncachedSurface(gpu_addr, params);
758 LoadSurface(new_surface);
759
758 bool modified = false; 760 bool modified = false;
759 for (auto& surface : overlaps) { 761 for (auto& surface : overlaps) {
760 const SurfaceParams& src_params = surface->GetSurfaceParams(); 762 const SurfaceParams& src_params = surface->GetSurfaceParams();
@@ -763,7 +765,10 @@ private:
763 src_params.block_height != params.block_height) { 765 src_params.block_height != params.block_height) {
764 return std::nullopt; 766 return std::nullopt;
765 } 767 }
766 modified |= surface->IsModified(); 768 if (!surface->IsModified()) {
769 continue;
770 }
771 modified = true;
767 772
768 const u32 offset = static_cast<u32>(surface->GetCpuAddr() - cpu_addr); 773 const u32 offset = static_cast<u32>(surface->GetCpuAddr() - cpu_addr);
769 const u32 slice = std::get<2>(params.GetBlockOffsetXYZ(offset)); 774 const u32 slice = std::get<2>(params.GetBlockOffsetXYZ(offset));