2014-04-08 23:04:25 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-08 23:04:25 +00:00
|
|
|
// Refer to the license.txt file included.
|
2014-04-05 20:04:25 +00:00
|
|
|
|
2015-12-30 13:52:01 +00:00
|
|
|
#include <memory>
|
2018-08-31 06:16:16 +00:00
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/settings.h"
|
2015-09-11 11:20:02 +00:00
|
|
|
#include "video_core/renderer_base.h"
|
|
|
|
#include "video_core/renderer_opengl/renderer_opengl.h"
|
2016-09-21 06:52:38 +00:00
|
|
|
#include "video_core/video_core.h"
|
2014-04-05 20:04:25 +00:00
|
|
|
|
|
|
|
namespace VideoCore {
|
|
|
|
|
2018-08-12 00:20:19 +00:00
|
|
|
std::unique_ptr<RendererBase> CreateRenderer(Core::Frontend::EmuWindow& emu_window) {
|
2018-08-21 08:18:27 +00:00
|
|
|
return std::make_unique<OpenGL::RendererOpenGL>(emu_window);
|
2014-04-05 20:04:25 +00:00
|
|
|
}
|
|
|
|
|
2018-08-31 06:16:16 +00:00
|
|
|
u16 GetResolutionScaleFactor(const RendererBase& renderer) {
|
2019-01-26 05:22:40 +00:00
|
|
|
return static_cast<u16>(
|
|
|
|
Settings::values.resolution_factor
|
|
|
|
? Settings::values.resolution_factor
|
|
|
|
: renderer.GetRenderWindow().GetFramebufferLayout().GetScalingRatio());
|
2018-08-31 06:16:16 +00:00
|
|
|
}
|
|
|
|
|
2018-01-20 07:48:02 +00:00
|
|
|
} // namespace VideoCore
|