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
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-05-19 04:21:33 +00:00
|
|
|
#include <atomic>
|
2022-08-29 18:37:38 +00:00
|
|
|
#include <functional>
|
2019-12-27 21:07:29 +00:00
|
|
|
#include <iostream>
|
2015-12-30 13:52:01 +00:00
|
|
|
#include <memory>
|
2018-08-31 06:16:16 +00:00
|
|
|
#include "core/frontend/emu_window.h"
|
2015-05-19 04:21:33 +00:00
|
|
|
|
2018-08-12 00:20:19 +00:00
|
|
|
namespace Frontend {
|
2015-06-21 13:02:11 +00:00
|
|
|
class EmuWindow;
|
2018-08-12 00:20:19 +00:00
|
|
|
}
|
|
|
|
|
2023-03-27 11:29:17 +00:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
2015-06-21 13:02:11 +00:00
|
|
|
|
2018-12-01 22:46:18 +00:00
|
|
|
namespace Memory {
|
2018-11-21 16:20:20 +00:00
|
|
|
class MemorySystem;
|
|
|
|
}
|
|
|
|
|
2014-04-05 20:04:25 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Video Core namespace
|
|
|
|
|
|
|
|
namespace VideoCore {
|
|
|
|
|
2023-03-27 11:29:17 +00:00
|
|
|
class RendererBase;
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
extern std::unique_ptr<RendererBase> g_renderer; ///< Renderer plugin
|
2014-04-05 20:04:25 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
// TODO: Wrap these in a user settings struct along with any other graphics settings (often set from
|
|
|
|
// qt ui)
|
2015-07-23 03:25:30 +00:00
|
|
|
extern std::atomic<bool> g_shader_jit_enabled;
|
2018-05-13 07:47:06 +00:00
|
|
|
extern std::atomic<bool> g_hw_shader_enabled;
|
2020-04-18 13:55:19 +00:00
|
|
|
extern std::atomic<bool> g_separable_shader_enabled;
|
2018-05-13 07:47:06 +00:00
|
|
|
extern std::atomic<bool> g_hw_shader_accurate_mul;
|
2015-05-19 04:21:33 +00:00
|
|
|
|
2018-11-21 16:20:20 +00:00
|
|
|
extern Memory::MemorySystem* g_memory;
|
|
|
|
|
2014-04-05 20:04:25 +00:00
|
|
|
/// Initialize the video core
|
2023-03-27 11:29:17 +00:00
|
|
|
void Init(Frontend::EmuWindow& emu_window, Frontend::EmuWindow* secondary_window,
|
|
|
|
Core::System& system);
|
2014-04-05 20:04:25 +00:00
|
|
|
|
|
|
|
/// Shutdown the video core
|
2014-04-06 20:55:39 +00:00
|
|
|
void Shutdown();
|
2014-04-05 20:04:25 +00:00
|
|
|
|
2020-04-06 20:23:39 +00:00
|
|
|
template <class Archive>
|
|
|
|
void serialize(Archive& ar, const unsigned int file_version);
|
2019-08-07 16:08:52 +00:00
|
|
|
|
2018-01-26 05:24:40 +00:00
|
|
|
} // namespace VideoCore
|