2014-04-09 01:04:25 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-09 01:04:25 +02:00
|
|
|
// Refer to the license.txt file included.
|
2014-04-05 22:04:25 +02:00
|
|
|
|
2015-12-30 14:52:01 +01:00
|
|
|
#include <memory>
|
2019-08-07 18:08:52 +02:00
|
|
|
#include "common/archives.h"
|
2015-09-11 13:20:02 +02:00
|
|
|
#include "common/logging/log.h"
|
2022-12-08 12:27:25 +01:00
|
|
|
#include "common/settings.h"
|
2023-03-27 13:29:17 +02:00
|
|
|
#include "core/core.h"
|
2023-05-03 17:24:10 +02:00
|
|
|
#include "core/frontend/emu_window.h"
|
2015-09-11 13:20:02 +02:00
|
|
|
#include "video_core/pica.h"
|
2019-08-07 18:08:52 +02:00
|
|
|
#include "video_core/pica_state.h"
|
2015-09-11 13:20:02 +02:00
|
|
|
#include "video_core/renderer_base.h"
|
2019-01-30 21:10:33 +01:00
|
|
|
#include "video_core/renderer_opengl/gl_vars.h"
|
2015-09-11 13:20:02 +02:00
|
|
|
#include "video_core/renderer_opengl/renderer_opengl.h"
|
2023-03-27 13:29:17 +02:00
|
|
|
#include "video_core/renderer_software/renderer_software.h"
|
2016-09-21 08:52:38 +02:00
|
|
|
#include "video_core/video_core.h"
|
2014-04-05 22:04:25 +02:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Video Core namespace
|
|
|
|
|
|
|
|
namespace VideoCore {
|
|
|
|
|
2023-03-27 13:29:17 +02:00
|
|
|
std::unique_ptr<RendererBase> g_renderer{}; ///< Renderer plugin
|
2014-04-05 22:04:25 +02:00
|
|
|
|
2015-07-23 05:25:30 +02:00
|
|
|
std::atomic<bool> g_shader_jit_enabled;
|
2018-05-13 09:47:06 +02:00
|
|
|
std::atomic<bool> g_hw_shader_enabled;
|
|
|
|
std::atomic<bool> g_hw_shader_accurate_mul;
|
2015-05-19 06:21:33 +02:00
|
|
|
|
2018-11-21 17:20:20 +01:00
|
|
|
Memory::MemorySystem* g_memory;
|
|
|
|
|
2014-04-05 22:04:25 +02:00
|
|
|
/// Initialize the video core
|
2023-03-27 13:29:17 +02:00
|
|
|
void Init(Frontend::EmuWindow& emu_window, Frontend::EmuWindow* secondary_window,
|
|
|
|
Core::System& system) {
|
|
|
|
g_memory = &system.Memory();
|
2015-05-14 05:29:27 +02:00
|
|
|
Pica::Init();
|
|
|
|
|
2023-03-27 13:29:17 +02:00
|
|
|
const Settings::GraphicsAPI graphics_api = Settings::values.graphics_api.GetValue();
|
2022-12-08 12:27:25 +01:00
|
|
|
OpenGL::GLES = Settings::values.use_gles.GetValue();
|
2019-01-30 21:10:33 +01:00
|
|
|
|
2023-03-27 13:29:17 +02:00
|
|
|
switch (graphics_api) {
|
|
|
|
case Settings::GraphicsAPI::Software:
|
|
|
|
g_renderer = std::make_unique<VideoCore::RendererSoftware>(system, emu_window);
|
|
|
|
break;
|
|
|
|
case Settings::GraphicsAPI::OpenGL:
|
|
|
|
g_renderer = std::make_unique<OpenGL::RendererOpenGL>(system, emu_window, secondary_window);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
LOG_CRITICAL(Render, "Unknown graphics API {}, using OpenGL", graphics_api);
|
|
|
|
g_renderer = std::make_unique<OpenGL::RendererOpenGL>(system, emu_window, secondary_window);
|
2016-01-07 20:33:54 +01:00
|
|
|
}
|
2014-04-05 22:04:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Shutdown the video core
|
|
|
|
void Shutdown() {
|
2015-05-14 05:29:27 +02:00
|
|
|
Pica::Shutdown();
|
2015-12-30 14:52:01 +01:00
|
|
|
g_renderer.reset();
|
2015-05-14 05:29:27 +02:00
|
|
|
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_DEBUG(Render, "shutdown OK");
|
2014-04-05 22:04:25 +02:00
|
|
|
}
|
|
|
|
|
2020-04-06 22:23:39 +02:00
|
|
|
template <class Archive>
|
|
|
|
void serialize(Archive& ar, const unsigned int) {
|
|
|
|
ar& Pica::g_state;
|
2019-08-07 18:08:52 +02:00
|
|
|
}
|
|
|
|
|
2018-01-26 06:24:40 +01:00
|
|
|
} // namespace VideoCore
|
2020-04-06 22:23:39 +02:00
|
|
|
|
|
|
|
SERIALIZE_IMPL(VideoCore)
|