diff options
author | Lioncash <mathew1800@gmail.com> | 2019-11-27 17:46:07 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-11-27 17:46:11 -0500 |
commit | aed6d8bef57f002f5ca6345421434631eda9fd27 (patch) | |
tree | fc9a85b4512d15182aa8b4987dc4815171527b5f /src/video_core/gpu_thread.cpp | |
parent | 6df6caaf5f3b59a2d1e19a5148a64cc50c61223c (diff) |
video_core/gpu_thread: Tidy up SwapBuffers()
We can just use std::nullopt and std::make_optional to make this a
little bit less noisy.
Diffstat (limited to 'src/video_core/gpu_thread.cpp')
-rw-r--r-- | src/video_core/gpu_thread.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/gpu_thread.cpp b/src/video_core/gpu_thread.cpp index 3efa3d8d0c..2cdf1aa7f7 100644 --- a/src/video_core/gpu_thread.cpp +++ b/src/video_core/gpu_thread.cpp @@ -71,8 +71,7 @@ void ThreadManager::SubmitList(Tegra::CommandList&& entries) { } void ThreadManager::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) { - PushCommand(SwapBuffersCommand(framebuffer ? *framebuffer - : std::optional<const Tegra::FramebufferConfig>{})); + PushCommand(SwapBuffersCommand(framebuffer ? std::make_optional(*framebuffer) : std::nullopt)); } void ThreadManager::FlushRegion(CacheAddr addr, u64 size) { |