2014-04-09 03:04:25 +04:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 08:38:14 +03:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-09 03:04:25 +04:00
|
|
|
// Refer to the license.txt file included.
|
2014-04-06 00:04:25 +04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-08-11 01:39:37 +03:00
|
|
|
#include <atomic>
|
2015-06-21 16:58:59 +03:00
|
|
|
#include <memory>
|
2018-01-15 07:51:54 +03:00
|
|
|
#include <boost/optional.hpp>
|
2015-05-06 10:06:12 +03:00
|
|
|
#include "common/common_types.h"
|
2018-03-23 04:04:30 +03:00
|
|
|
#include "video_core/gpu.h"
|
2018-03-23 02:46:37 +03:00
|
|
|
#include "video_core/rasterizer_interface.h"
|
2015-05-19 07:21:33 +03:00
|
|
|
|
2015-06-27 19:56:17 +03:00
|
|
|
class EmuWindow;
|
|
|
|
|
2018-08-03 19:55:58 +03:00
|
|
|
namespace VideoCore {
|
|
|
|
|
2018-08-11 01:39:37 +03:00
|
|
|
struct RendererSettings {
|
|
|
|
std::atomic_bool use_framelimiter{false};
|
|
|
|
};
|
|
|
|
|
2014-04-28 02:29:51 +04:00
|
|
|
class RendererBase : NonCopyable {
|
2014-04-06 00:04:25 +04:00
|
|
|
public:
|
2018-08-02 03:59:42 +03:00
|
|
|
explicit RendererBase(EmuWindow& window);
|
|
|
|
virtual ~RendererBase();
|
2014-04-06 00:04:25 +04:00
|
|
|
|
2014-04-07 00:55:39 +04:00
|
|
|
/// Swap buffers (render frame)
|
2018-03-23 04:04:30 +03:00
|
|
|
virtual void SwapBuffers(boost::optional<const Tegra::FramebufferConfig&> framebuffer) = 0;
|
2014-04-07 00:55:39 +04:00
|
|
|
|
2014-04-06 00:04:25 +04:00
|
|
|
/// Initialize the renderer
|
2016-01-07 22:33:54 +03:00
|
|
|
virtual bool Init() = 0;
|
2014-04-06 00:04:25 +04:00
|
|
|
|
|
|
|
/// Shutdown the renderer
|
|
|
|
virtual void ShutDown() = 0;
|
|
|
|
|
|
|
|
// Getter/setter functions:
|
|
|
|
// ------------------------
|
|
|
|
|
2016-03-09 05:39:44 +03:00
|
|
|
f32 GetCurrentFPS() const {
|
2014-04-09 02:59:02 +04:00
|
|
|
return m_current_fps;
|
|
|
|
}
|
2014-04-06 00:04:25 +04:00
|
|
|
|
2016-03-09 05:39:44 +03:00
|
|
|
int GetCurrentFrame() const {
|
2014-04-09 02:59:02 +04:00
|
|
|
return m_current_frame;
|
|
|
|
}
|
2014-04-06 00:04:25 +04:00
|
|
|
|
2018-08-03 20:56:33 +03:00
|
|
|
RasterizerInterface& Rasterizer() {
|
|
|
|
return *rasterizer;
|
|
|
|
}
|
|
|
|
|
|
|
|
const RasterizerInterface& Rasterizer() const {
|
|
|
|
return *rasterizer;
|
2018-03-23 02:46:37 +03:00
|
|
|
}
|
|
|
|
|
2018-08-11 01:39:37 +03:00
|
|
|
/// Refreshes the settings common to all renderers
|
|
|
|
void RefreshBaseSettings();
|
2015-05-19 07:21:33 +03:00
|
|
|
|
2014-04-06 00:04:25 +04:00
|
|
|
protected:
|
2018-08-11 01:39:37 +03:00
|
|
|
/// Refreshes settings specific to the rasterizer.
|
|
|
|
void RefreshRasterizerSetting();
|
|
|
|
|
2018-08-02 03:59:42 +03:00
|
|
|
EmuWindow& render_window; ///< Reference to the render window handle.
|
2018-08-03 19:55:58 +03:00
|
|
|
std::unique_ptr<RasterizerInterface> rasterizer;
|
2016-09-18 03:38:01 +03:00
|
|
|
f32 m_current_fps = 0.0f; ///< Current framerate, should be set by the renderer
|
|
|
|
int m_current_frame = 0; ///< Current frame, should be set by the renderer
|
2018-08-11 01:39:37 +03:00
|
|
|
|
|
|
|
RendererSettings renderer_settings;
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// Updates the framebuffer layout of the contained render window handle.
|
|
|
|
void UpdateCurrentFramebufferLayout();
|
2014-04-06 00:04:25 +04:00
|
|
|
};
|
2018-08-03 19:55:58 +03:00
|
|
|
|
|
|
|
} // namespace VideoCore
|