2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2010 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2015-12-21 02:49:49 +00:00
|
|
|
#include <memory>
|
2017-01-23 18:33:26 +00:00
|
|
|
#include <tuple>
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2016-01-17 21:54:31 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/MathUtil.h"
|
2017-04-29 15:00:45 +00:00
|
|
|
#include "VideoCommon/RenderState.h"
|
2023-01-30 11:46:10 +00:00
|
|
|
#include "VideoCommon/VideoEvents.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
|
2019-06-29 09:27:53 +00:00
|
|
|
class PointerWrap;
|
2017-01-23 16:20:20 +00:00
|
|
|
enum class EFBAccessType;
|
2019-02-15 01:59:50 +00:00
|
|
|
enum class EFBReinterpretType;
|
|
|
|
|
2015-05-01 16:58:11 +00:00
|
|
|
struct EfbPokeData
|
|
|
|
{
|
|
|
|
u16 x, y;
|
|
|
|
u32 data;
|
|
|
|
};
|
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
// Renderer really isn't a very good name for this class - it's more like "Misc".
|
2023-01-31 01:34:36 +00:00
|
|
|
// It used to be a massive mess, but almost everything has been refactored out.
|
|
|
|
//
|
2023-01-31 04:26:46 +00:00
|
|
|
// All that's left is Widescreen tracking, pixel format and a thin abstraction layer
|
|
|
|
// for VideoSoftware to intercept EFB accesses.
|
2010-11-18 02:21:26 +00:00
|
|
|
class Renderer
|
|
|
|
{
|
|
|
|
public:
|
2023-01-26 22:34:59 +00:00
|
|
|
Renderer();
|
2010-11-18 02:21:26 +00:00
|
|
|
virtual ~Renderer();
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2019-02-15 01:59:50 +00:00
|
|
|
virtual void ReinterpretPixelData(EFBReinterpretType convtype);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2019-02-15 01:59:50 +00:00
|
|
|
virtual u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data);
|
|
|
|
virtual void PokeEFB(EFBAccessType type, const EfbPokeData* points, size_t num_points);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2021-02-11 02:11:31 +00:00
|
|
|
PixelFormat GetPrevPixelFormat() const { return m_prev_efb_format; }
|
|
|
|
void StorePixelFormat(PixelFormat new_format) { m_prev_efb_format = new_format; }
|
2023-01-27 04:03:15 +00:00
|
|
|
|
2023-01-31 04:26:46 +00:00
|
|
|
static bool UseVertexDepthRange();
|
2019-06-29 09:27:53 +00:00
|
|
|
void DoState(PointerWrap& p);
|
2017-02-24 14:16:28 +00:00
|
|
|
|
2010-12-27 21:56:20 +00:00
|
|
|
private:
|
2023-01-28 02:13:49 +00:00
|
|
|
PixelFormat m_prev_efb_format;
|
2010-11-18 02:21:26 +00:00
|
|
|
};
|
|
|
|
|
2015-12-21 02:49:49 +00:00
|
|
|
extern std::unique_ptr<Renderer> g_renderer;
|