diff options
author | Ameer J <52414509+ameerj@users.noreply.github.com> | 2021-10-24 00:02:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-24 00:02:23 +0200 |
commit | 494e34af6a247ebe18baaa237d6aab547feb3fba (patch) | |
tree | 60c61302d9ffc00b398ce6fbb53b7b74bbe17d51 /src/video_core/texture_cache | |
parent | Merge pull request #7217 from yuzu-emu/revert-6515-gc_thread_safe (diff) | |
parent | Vulran Rasterizer: address feedback. (diff) | |
download | yuzu-494e34af6a247ebe18baaa237d6aab547feb3fba.tar yuzu-494e34af6a247ebe18baaa237d6aab547feb3fba.tar.gz yuzu-494e34af6a247ebe18baaa237d6aab547feb3fba.tar.bz2 yuzu-494e34af6a247ebe18baaa237d6aab547feb3fba.tar.lz yuzu-494e34af6a247ebe18baaa237d6aab547feb3fba.tar.xz yuzu-494e34af6a247ebe18baaa237d6aab547feb3fba.tar.zst yuzu-494e34af6a247ebe18baaa237d6aab547feb3fba.zip |
Diffstat (limited to 'src/video_core/texture_cache')
-rw-r--r-- | src/video_core/texture_cache/texture_cache.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h index 329df2e49..f70c1f764 100644 --- a/src/video_core/texture_cache/texture_cache.h +++ b/src/video_core/texture_cache/texture_cache.h @@ -221,6 +221,7 @@ void TextureCache<P>::UpdateRenderTargets(bool is_clear) { BindRenderTarget(&render_targets.depth_buffer_id, FindDepthBuffer(is_clear)); } const ImageViewId depth_buffer_id = render_targets.depth_buffer_id; + PrepareImageView(depth_buffer_id, true, is_clear && IsFullClear(depth_buffer_id)); for (size_t index = 0; index < NUM_RT; ++index) { @@ -230,6 +231,8 @@ void TextureCache<P>::UpdateRenderTargets(bool is_clear) { maxwell3d.regs.render_area.width, maxwell3d.regs.render_area.height, }; + + flags[Dirty::DepthBiasGlobal] = true; } template <class P> |