diff options
author | bunnei <bunneidev@gmail.com> | 2018-12-23 20:36:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-23 20:36:51 +0100 |
commit | 9a22a94a510e6f537b5156a960f0d49307089668 (patch) | |
tree | 05d895b5fc1aa0caa51cce9314fd1c81244f69a0 /src/video_core/video_core.cpp | |
parent | Merge pull request #1930 from lioncash/common (diff) | |
parent | yuzu, video_core: Screenshot functionality (diff) | |
download | yuzu-9a22a94a510e6f537b5156a960f0d49307089668.tar yuzu-9a22a94a510e6f537b5156a960f0d49307089668.tar.gz yuzu-9a22a94a510e6f537b5156a960f0d49307089668.tar.bz2 yuzu-9a22a94a510e6f537b5156a960f0d49307089668.tar.lz yuzu-9a22a94a510e6f537b5156a960f0d49307089668.tar.xz yuzu-9a22a94a510e6f537b5156a960f0d49307089668.tar.zst yuzu-9a22a94a510e6f537b5156a960f0d49307089668.zip |
Diffstat (limited to 'src/video_core/video_core.cpp')
-rw-r--r-- | src/video_core/video_core.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/video_core/video_core.cpp b/src/video_core/video_core.cpp index 07e3a7d24..f7de3471b 100644 --- a/src/video_core/video_core.cpp +++ b/src/video_core/video_core.cpp @@ -3,6 +3,8 @@ // Refer to the license.txt file included. #include <memory> +#include "core/core.h" +#include "core/settings.h" #include "video_core/renderer_base.h" #include "video_core/renderer_opengl/renderer_opengl.h" #include "video_core/video_core.h" @@ -13,4 +15,10 @@ std::unique_ptr<RendererBase> CreateRenderer(Core::Frontend::EmuWindow& emu_wind return std::make_unique<OpenGL::RendererOpenGL>(emu_window); } +u16 GetResolutionScaleFactor(const RendererBase& renderer) { + return !Settings::values.resolution_factor + ? renderer.GetRenderWindow().GetFramebufferLayout().GetScalingRatio() + : Settings::values.resolution_factor; +} + } // namespace VideoCore |