From b7216f91f7b7681aff04cfaecd0a91bdeebc835c Mon Sep 17 00:00:00 2001 From: Triang3l Date: Tue, 8 Dec 2020 22:36:47 +0300 Subject: [PATCH] [D3D12] Re-add forgotten RenderTargetCache::EndFrame call --- src/xenia/gpu/d3d12/d3d12_command_processor.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/xenia/gpu/d3d12/d3d12_command_processor.cc b/src/xenia/gpu/d3d12/d3d12_command_processor.cc index d355d83c6..f6af89881 100644 --- a/src/xenia/gpu/d3d12/d3d12_command_processor.cc +++ b/src/xenia/gpu/d3d12/d3d12_command_processor.cc @@ -2651,6 +2651,8 @@ bool D3D12CommandProcessor::EndSubmission(bool is_swap) { bool is_closing_frame = is_swap && frame_open_; if (is_closing_frame) { + render_target_cache_->EndFrame(); + texture_cache_->EndFrame(); }