2014-04-08 16:04:25 -07:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-16 21:38:14 -08:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-08 16:04:25 -07:00
|
|
|
// Refer to the license.txt file included.
|
2014-04-05 13:04:25 -07:00
|
|
|
|
2015-12-30 05:52:01 -08:00
|
|
|
#include <memory>
|
2015-09-11 04:20:02 -07:00
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "video_core/pica.h"
|
|
|
|
#include "video_core/renderer_base.h"
|
|
|
|
#include "video_core/renderer_opengl/renderer_opengl.h"
|
2016-09-20 23:52:38 -07:00
|
|
|
#include "video_core/video_core.h"
|
2014-04-05 13:04:25 -07:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Video Core namespace
|
|
|
|
|
|
|
|
namespace VideoCore {
|
|
|
|
|
2016-09-17 17:38:01 -07:00
|
|
|
std::unique_ptr<RendererBase> g_renderer; ///< Renderer plugin
|
2014-04-05 13:04:25 -07:00
|
|
|
|
2015-05-18 21:21:33 -07:00
|
|
|
std::atomic<bool> g_hw_renderer_enabled;
|
2015-07-22 20:25:30 -07:00
|
|
|
std::atomic<bool> g_shader_jit_enabled;
|
2018-05-13 00:47:06 -07:00
|
|
|
std::atomic<bool> g_hw_shader_enabled;
|
|
|
|
std::atomic<bool> g_hw_shader_accurate_gs;
|
|
|
|
std::atomic<bool> g_hw_shader_accurate_mul;
|
2018-08-04 00:11:51 -07:00
|
|
|
std::atomic<bool> g_renderer_bg_color_update_requested;
|
2015-05-18 21:21:33 -07:00
|
|
|
|
2014-04-05 13:04:25 -07:00
|
|
|
/// Initialize the video core
|
2018-08-24 06:18:46 -07:00
|
|
|
Core::System::ResultStatus Init(EmuWindow& emu_window) {
|
2015-05-13 20:29:27 -07:00
|
|
|
Pica::Init();
|
|
|
|
|
2018-11-16 23:29:10 -08:00
|
|
|
g_renderer = std::make_unique<OpenGL::RendererOpenGL>(emu_window);
|
2018-07-20 08:20:57 -07:00
|
|
|
Core::System::ResultStatus result = g_renderer->Init();
|
|
|
|
|
|
|
|
if (result != Core::System::ResultStatus::Success) {
|
2018-06-29 04:18:07 -07:00
|
|
|
LOG_ERROR(Render, "initialization failed !");
|
2018-07-20 08:20:57 -07:00
|
|
|
} else {
|
|
|
|
LOG_DEBUG(Render, "initialized OK");
|
2016-01-07 11:33:54 -08:00
|
|
|
}
|
2018-07-20 08:20:57 -07:00
|
|
|
|
|
|
|
return result;
|
2014-04-05 13:04:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Shutdown the video core
|
|
|
|
void Shutdown() {
|
2015-05-13 20:29:27 -07:00
|
|
|
Pica::Shutdown();
|
|
|
|
|
2015-12-30 05:52:01 -08:00
|
|
|
g_renderer.reset();
|
2015-05-13 20:29:27 -07:00
|
|
|
|
2018-06-29 04:18:07 -07:00
|
|
|
LOG_DEBUG(Render, "shutdown OK");
|
2014-04-05 13:04:25 -07:00
|
|
|
}
|
|
|
|
|
2018-01-25 21:24:40 -08:00
|
|
|
} // namespace VideoCore
|