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-12-30 07:52:01 -06:00
|
|
|
#include <memory>
|
2015-09-11 06:20:02 -05:00
|
|
|
#include "common/logging/log.h"
|
2018-08-31 01:16:16 -05:00
|
|
|
#include "core/settings.h"
|
2015-09-11 06:20:02 -05:00
|
|
|
#include "video_core/pica.h"
|
|
|
|
#include "video_core/renderer_base.h"
|
|
|
|
#include "video_core/renderer_opengl/renderer_opengl.h"
|
2016-09-21 01:52:38 -05:00
|
|
|
#include "video_core/video_core.h"
|
2014-04-05 15:04:25 -05:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Video Core namespace
|
|
|
|
|
|
|
|
namespace VideoCore {
|
|
|
|
|
2016-09-17 19:38:01 -05:00
|
|
|
std::unique_ptr<RendererBase> g_renderer; ///< Renderer plugin
|
2014-04-05 15:04:25 -05:00
|
|
|
|
2015-05-18 23:21:33 -05:00
|
|
|
std::atomic<bool> g_hw_renderer_enabled;
|
2015-07-22 22:25:30 -05:00
|
|
|
std::atomic<bool> g_shader_jit_enabled;
|
2018-05-13 02:47:06 -05: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 02:11:51 -05:00
|
|
|
std::atomic<bool> g_renderer_bg_color_update_requested;
|
2018-08-31 01:16:16 -05:00
|
|
|
// Screenshot
|
|
|
|
std::atomic<bool> g_renderer_screenshot_requested;
|
|
|
|
void* g_screenshot_bits;
|
|
|
|
std::function<void()> g_screenshot_complete_callback;
|
|
|
|
Layout::FramebufferLayout g_screenshot_framebuffer_layout;
|
2015-05-18 23:21:33 -05:00
|
|
|
|
2014-04-05 15:04:25 -05:00
|
|
|
/// Initialize the video core
|
2018-08-24 08:18:46 -05:00
|
|
|
Core::System::ResultStatus Init(EmuWindow& emu_window) {
|
2015-05-13 22:29:27 -05:00
|
|
|
Pica::Init();
|
|
|
|
|
2018-11-17 01:29:10 -06:00
|
|
|
g_renderer = std::make_unique<OpenGL::RendererOpenGL>(emu_window);
|
2018-07-20 10:20:57 -05:00
|
|
|
Core::System::ResultStatus result = g_renderer->Init();
|
|
|
|
|
|
|
|
if (result != Core::System::ResultStatus::Success) {
|
2018-06-29 06:18:07 -05:00
|
|
|
LOG_ERROR(Render, "initialization failed !");
|
2018-07-20 10:20:57 -05:00
|
|
|
} else {
|
|
|
|
LOG_DEBUG(Render, "initialized OK");
|
2016-01-07 13:33:54 -06:00
|
|
|
}
|
2018-07-20 10:20:57 -05:00
|
|
|
|
|
|
|
return result;
|
2014-04-05 15:04:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Shutdown the video core
|
|
|
|
void Shutdown() {
|
2015-05-13 22:29:27 -05:00
|
|
|
Pica::Shutdown();
|
|
|
|
|
2015-12-30 07:52:01 -06:00
|
|
|
g_renderer.reset();
|
2015-05-13 22:29:27 -05:00
|
|
|
|
2018-06-29 06:18:07 -05:00
|
|
|
LOG_DEBUG(Render, "shutdown OK");
|
2014-04-05 15:04:25 -05:00
|
|
|
}
|
|
|
|
|
2018-08-31 01:16:16 -05:00
|
|
|
void RequestScreenshot(void* data, std::function<void()> callback,
|
|
|
|
const Layout::FramebufferLayout& layout) {
|
|
|
|
if (g_renderer_screenshot_requested) {
|
|
|
|
LOG_ERROR(Render, "A screenshot is already requested or in progress, ignoring the request");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
g_screenshot_bits = data;
|
|
|
|
g_screenshot_complete_callback = std::move(callback);
|
|
|
|
g_screenshot_framebuffer_layout = layout;
|
|
|
|
g_renderer_screenshot_requested = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
u16 GetResolutionScaleFactor() {
|
|
|
|
if (g_hw_renderer_enabled) {
|
|
|
|
return !Settings::values.resolution_factor
|
|
|
|
? g_renderer->GetRenderWindow().GetFramebufferLayout().GetScalingRatio()
|
|
|
|
: Settings::values.resolution_factor;
|
|
|
|
} else {
|
|
|
|
// Software renderer always render at native resolution
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-25 23:24:40 -06:00
|
|
|
} // namespace VideoCore
|