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-09-11 11:20:02 +00:00
|
|
|
#include "common/logging/log.h"
|
2022-12-08 11:27:25 +00:00
|
|
|
#include "common/settings.h"
|
2023-12-28 10:46:57 +00:00
|
|
|
#include "video_core/gpu.h"
|
2015-09-11 11:20:02 +00:00
|
|
|
#include "video_core/renderer_opengl/renderer_opengl.h"
|
2023-03-27 11:29:17 +00:00
|
|
|
#include "video_core/renderer_software/renderer_software.h"
|
2023-09-12 22:28:50 +00:00
|
|
|
#include "video_core/renderer_vulkan/renderer_vulkan.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 {
|
|
|
|
|
2023-12-28 10:46:57 +00:00
|
|
|
std::unique_ptr<RendererBase> CreateRenderer(Frontend::EmuWindow& emu_window,
|
|
|
|
Frontend::EmuWindow* secondary_window,
|
|
|
|
Pica::PicaCore& pica, Core::System& system) {
|
2023-03-27 11:29:17 +00:00
|
|
|
const Settings::GraphicsAPI graphics_api = Settings::values.graphics_api.GetValue();
|
|
|
|
switch (graphics_api) {
|
|
|
|
case Settings::GraphicsAPI::Software:
|
2023-12-28 10:46:57 +00:00
|
|
|
return std::make_unique<SwRenderer::RendererSoftware>(system, pica, emu_window);
|
2023-09-12 22:28:50 +00:00
|
|
|
case Settings::GraphicsAPI::Vulkan:
|
2023-12-28 10:46:57 +00:00
|
|
|
return std::make_unique<Vulkan::RendererVulkan>(system, pica, emu_window, secondary_window);
|
2023-03-27 11:29:17 +00:00
|
|
|
case Settings::GraphicsAPI::OpenGL:
|
2023-12-28 10:46:57 +00:00
|
|
|
return std::make_unique<OpenGL::RendererOpenGL>(system, pica, emu_window, secondary_window);
|
2023-03-27 11:29:17 +00:00
|
|
|
default:
|
|
|
|
LOG_CRITICAL(Render, "Unknown graphics API {}, using OpenGL", graphics_api);
|
2023-12-28 10:46:57 +00:00
|
|
|
return std::make_unique<OpenGL::RendererOpenGL>(system, pica, emu_window, secondary_window);
|
2016-01-07 19:33:54 +00:00
|
|
|
}
|
2014-04-05 20:04:25 +00:00
|
|
|
}
|
|
|
|
|
2018-01-26 05:24:40 +00:00
|
|
|
} // namespace VideoCore
|