diff options
author | bunnei <bunneidev@gmail.com> | 2015-01-08 00:13:48 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-01-08 00:13:48 +0100 |
commit | b659cac2dc67ee97297049fcfb02c1ce186ffcb0 (patch) | |
tree | 8b0bae87f32c632e5d07d826133d56d49c6159f7 /src/core/hle | |
parent | Merge pull request #431 from yuriks/thread-queue-cleanup (diff) | |
parent | GSP: Toggle active framebuffer each frame (diff) | |
download | yuzu-b659cac2dc67ee97297049fcfb02c1ce186ffcb0.tar yuzu-b659cac2dc67ee97297049fcfb02c1ce186ffcb0.tar.gz yuzu-b659cac2dc67ee97297049fcfb02c1ce186ffcb0.tar.bz2 yuzu-b659cac2dc67ee97297049fcfb02c1ce186ffcb0.tar.lz yuzu-b659cac2dc67ee97297049fcfb02c1ce186ffcb0.tar.xz yuzu-b659cac2dc67ee97297049fcfb02c1ce186ffcb0.tar.zst yuzu-b659cac2dc67ee97297049fcfb02c1ce186ffcb0.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/service/gsp_gpu.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/hle/service/gsp_gpu.cpp b/src/core/hle/service/gsp_gpu.cpp index 0127d4ee5..26a43217e 100644 --- a/src/core/hle/service/gsp_gpu.cpp +++ b/src/core/hle/service/gsp_gpu.cpp @@ -291,8 +291,11 @@ static void ExecuteCommand(const Command& command, u32 thread_id) { // Update framebuffer information if requested for (int screen_id = 0; screen_id < 2; ++screen_id) { FrameBufferUpdate* info = GetFrameBufferInfo(thread_id, screen_id); - if (info->is_dirty) + + if (info->is_dirty) { SetBufferSwap(screen_id, info->framebuffer_info[info->index]); + info->framebuffer_info->active_fb = info->framebuffer_info->active_fb ^ 1; + } info->is_dirty = false; } |