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>
|
|
|
|
|
2014-04-09 00:15:08 +00:00
|
|
|
#include "common/emu_window.h"
|
2015-12-30 13:52:01 +00:00
|
|
|
#include "common/make_unique.h"
|
2015-09-11 11:20:02 +00:00
|
|
|
#include "common/logging/log.h"
|
2014-04-05 20:04:25 +00:00
|
|
|
|
2014-04-09 00:15:08 +00:00
|
|
|
#include "core/core.h"
|
2015-05-19 04:21:33 +00:00
|
|
|
#include "core/settings.h"
|
2014-04-06 20:55:39 +00:00
|
|
|
|
2015-09-11 11:20:02 +00:00
|
|
|
#include "video_core/pica.h"
|
|
|
|
#include "video_core/renderer_base.h"
|
|
|
|
#include "video_core/video_core.h"
|
|
|
|
#include "video_core/renderer_opengl/renderer_opengl.h"
|
2014-04-05 20:04:25 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Video Core namespace
|
|
|
|
|
|
|
|
namespace VideoCore {
|
|
|
|
|
2015-12-30 13:52:01 +00:00
|
|
|
EmuWindow* g_emu_window = nullptr; ///< Frontend emulator window
|
|
|
|
std::unique_ptr<RendererBase> g_renderer; ///< Renderer plugin
|
2014-04-05 20:04:25 +00:00
|
|
|
|
2015-05-19 04:21:33 +00:00
|
|
|
std::atomic<bool> g_hw_renderer_enabled;
|
2015-07-23 03:25:30 +00:00
|
|
|
std::atomic<bool> g_shader_jit_enabled;
|
2015-05-19 04:21:33 +00:00
|
|
|
|
2014-04-05 20:04:25 +00:00
|
|
|
/// Initialize the video core
|
|
|
|
void Init(EmuWindow* emu_window) {
|
2015-05-14 03:29:27 +00:00
|
|
|
Pica::Init();
|
|
|
|
|
2014-04-05 20:04:25 +00:00
|
|
|
g_emu_window = emu_window;
|
2015-12-30 13:52:01 +00:00
|
|
|
g_renderer = Common::make_unique<RendererOpenGL>();
|
2014-04-06 20:55:39 +00:00
|
|
|
g_renderer->SetWindow(g_emu_window);
|
|
|
|
g_renderer->Init();
|
2014-04-05 20:04:25 +00:00
|
|
|
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_DEBUG(Render, "initialized OK");
|
2014-04-05 20:04:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Shutdown the video core
|
|
|
|
void Shutdown() {
|
2015-05-14 03:29:27 +00:00
|
|
|
Pica::Shutdown();
|
|
|
|
|
2015-12-30 13:52:01 +00:00
|
|
|
g_renderer.reset();
|
2015-05-14 03:29:27 +00:00
|
|
|
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_DEBUG(Render, "shutdown OK");
|
2014-04-05 20:04:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|