diff options
| author | Triang3l <triang3l@yandex.ru> | 2020-12-08 22:36:47 +0300 |
|---|---|---|
| committer | Triang3l <triang3l@yandex.ru> | 2020-12-08 22:36:47 +0300 |
| commit | b7216f91f7b7681aff04cfaecd0a91bdeebc835c (patch) | |
| tree | 9c2c75d2006a77c1ad233fe51ab4da48124f12d9 | |
| parent | 36a0bcec8b85e225c49c8a4e26cdd3c79cf47710 (diff) | |
[D3D12] Re-add forgotten RenderTargetCache::EndFrame call
| -rw-r--r-- | src/xenia/gpu/d3d12/d3d12_command_processor.cc | 2 |
1 files changed, 2 insertions, 0 deletions
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(); } |
