2014-04-08 18:04:25 -05:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-16 23:38:14 -06:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-08 18:04:25 -05:00
|
|
|
// Refer to the license.txt file included.
|
2014-04-05 15:04:25 -05:00
|
|
|
|
2015-09-11 06:20:02 -05:00
|
|
|
#include "common/logging/log.h"
|
2022-12-08 05:27:25 -06:00
|
|
|
#include "common/settings.h"
|
2023-12-28 04:46:57 -06:00
|
|
|
#include "video_core/gpu.h"
|
2015-09-11 06:20:02 -05:00
|
|
|
#include "video_core/renderer_opengl/renderer_opengl.h"
|
2023-03-27 06:29:17 -05:00
|
|
|
#include "video_core/renderer_software/renderer_software.h"
|
2023-09-12 17:28:50 -05:00
|
|
|
#include "video_core/renderer_vulkan/renderer_vulkan.h"
|
2016-09-21 01:52:38 -05:00
|
|
|
#include "video_core/video_core.h"
|
2014-04-05 15:04:25 -05:00
|
|
|
|
|
|
|
namespace VideoCore {
|
|
|
|
|
2023-12-28 04:46:57 -06:00
|
|
|
std::unique_ptr<RendererBase> CreateRenderer(Frontend::EmuWindow& emu_window,
|
|
|
|
Frontend::EmuWindow* secondary_window,
|
|
|
|
Pica::PicaCore& pica, Core::System& system) {
|
2023-03-27 06:29:17 -05:00
|
|
|
const Settings::GraphicsAPI graphics_api = Settings::values.graphics_api.GetValue();
|
|
|
|
switch (graphics_api) {
|
|
|
|
case Settings::GraphicsAPI::Software:
|
2023-12-28 04:46:57 -06:00
|
|
|
return std::make_unique<SwRenderer::RendererSoftware>(system, pica, emu_window);
|
2023-09-12 17:28:50 -05:00
|
|
|
case Settings::GraphicsAPI::Vulkan:
|
2023-12-28 04:46:57 -06:00
|
|
|
return std::make_unique<Vulkan::RendererVulkan>(system, pica, emu_window, secondary_window);
|
2023-03-27 06:29:17 -05:00
|
|
|
case Settings::GraphicsAPI::OpenGL:
|
2023-12-28 04:46:57 -06:00
|
|
|
return std::make_unique<OpenGL::RendererOpenGL>(system, pica, emu_window, secondary_window);
|
2023-03-27 06:29:17 -05:00
|
|
|
default:
|
|
|
|
LOG_CRITICAL(Render, "Unknown graphics API {}, using OpenGL", graphics_api);
|
2023-12-28 04:46:57 -06:00
|
|
|
return std::make_unique<OpenGL::RendererOpenGL>(system, pica, emu_window, secondary_window);
|
2016-01-07 13:33:54 -06:00
|
|
|
}
|
2014-04-05 15:04:25 -05:00
|
|
|
}
|
|
|
|
|
2018-01-25 23:24:40 -06:00
|
|
|
} // namespace VideoCore
|