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
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------------------------
|
|
|
|
// GC graphics pipeline
|
|
|
|
// ---------------------------------------------------------------------------------------------
|
2015-01-11 05:17:29 +00:00
|
|
|
// 3d commands are issued through the fifo. The GPU draws to the 2MB EFB.
|
2010-11-18 02:21:26 +00:00
|
|
|
// The efb can be copied back into ram in two forms: as textures or as XFB.
|
|
|
|
// The XFB is the region in RAM that the VI chip scans out to the television.
|
|
|
|
// So, after all rendering to EFB is done, the image is copied into one of two XFBs in RAM.
|
|
|
|
// Next frame, that one is scanned out and the other one gets the copy. = double buffering.
|
|
|
|
// ---------------------------------------------------------------------------------------------
|
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2018-01-21 10:22:45 +00:00
|
|
|
#include <array>
|
2015-12-21 02:49:49 +00:00
|
|
|
#include <memory>
|
2015-05-26 21:23:43 +00:00
|
|
|
#include <mutex>
|
2010-11-18 02:21:26 +00:00
|
|
|
#include <string>
|
2019-05-30 07:07:40 +00:00
|
|
|
#include <string_view>
|
2016-10-08 01:11:37 +00:00
|
|
|
#include <thread>
|
2017-01-23 18:33:26 +00:00
|
|
|
#include <tuple>
|
2016-01-17 21:54:31 +00:00
|
|
|
#include <vector>
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2016-01-17 21:54:31 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
#include "Common/Flag.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
|
|
|
|
2018-01-21 10:22:45 +00:00
|
|
|
class AbstractFramebuffer;
|
2017-09-08 09:42:56 +00:00
|
|
|
class AbstractPipeline;
|
|
|
|
class AbstractShader;
|
2017-05-29 22:02:09 +00:00
|
|
|
class AbstractTexture;
|
2017-10-21 14:49:40 +00:00
|
|
|
class AbstractStagingTexture;
|
2018-10-09 13:57:52 +00:00
|
|
|
class NativeVertexFormat;
|
2022-12-27 16:42:02 +00:00
|
|
|
class PixelShaderManager;
|
2019-06-29 09:27:53 +00:00
|
|
|
class PointerWrap;
|
2017-09-08 09:42:56 +00:00
|
|
|
struct ComputePipelineConfig;
|
|
|
|
struct AbstractPipelineConfig;
|
2019-02-15 01:59:50 +00:00
|
|
|
struct PortableVertexDeclaration;
|
2023-01-27 04:03:15 +00:00
|
|
|
struct TextureConfig;
|
|
|
|
enum class AbstractTextureFormat : u32;
|
2017-09-08 09:42:56 +00:00
|
|
|
enum class ShaderStage;
|
2017-01-23 16:20:20 +00:00
|
|
|
enum class EFBAccessType;
|
2019-02-15 01:59:50 +00:00
|
|
|
enum class EFBReinterpretType;
|
2017-10-21 14:49:40 +00:00
|
|
|
enum class StagingTextureType;
|
2014-07-29 16:52:34 +00:00
|
|
|
|
2019-02-15 01:59:50 +00:00
|
|
|
namespace VideoCommon
|
|
|
|
{
|
2023-01-27 04:03:15 +00:00
|
|
|
class AsyncShaderCompiler;
|
|
|
|
}
|
2019-02-15 01:59:50 +00:00
|
|
|
|
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".
|
|
|
|
// The long term goal is to get rid of this class and replace it with others that make
|
|
|
|
// more sense.
|
|
|
|
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
|
|
|
|
2017-07-03 14:32:02 +00:00
|
|
|
// Ideal internal resolution - multiple of the native EFB resolution
|
2017-04-08 23:40:04 +00:00
|
|
|
int GetTargetWidth() const { return m_target_width; }
|
|
|
|
int GetTargetHeight() const { return m_target_height; }
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2019-02-15 01:59:50 +00:00
|
|
|
// EFB coordinate conversion functions
|
2010-12-10 15:54:14 +00:00
|
|
|
// Use this to convert a whole native EFB rect to backbuffer coordinates
|
2019-08-05 02:45:25 +00:00
|
|
|
MathUtil::Rectangle<int> ConvertEFBRectangle(const MathUtil::Rectangle<int>& rc) const;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-11-03 15:04:46 +00:00
|
|
|
unsigned int GetEFBScale() const;
|
|
|
|
|
2010-12-10 15:54:14 +00:00
|
|
|
// Use this to upscale native EFB coordinates to IDEAL internal resolution
|
2017-04-08 23:40:04 +00:00
|
|
|
int EFBToScaledX(int x) const;
|
|
|
|
int EFBToScaledY(int y) const;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2010-12-10 15:54:14 +00:00
|
|
|
// Floating point versions of the above - only use them if really necessary
|
2017-04-08 23:40:04 +00:00
|
|
|
float EFBToScaledXf(float x) const;
|
|
|
|
float EFBToScaledYf(float y) const;
|
|
|
|
|
2023-01-27 02:07:05 +00:00
|
|
|
void ClearScreen(const MathUtil::Rectangle<int>& rc, bool colorEnable, bool alphaEnable,
|
|
|
|
bool zEnable, u32 color, u32 z);
|
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
|
|
|
|
2023-01-30 11:59:17 +00:00
|
|
|
// Track swaps for save-states
|
|
|
|
void TrackSwaps(u32 xfb_addr, u32 fb_width, u32 fb_stride, u32 fb_height, u64 ticks);
|
2018-11-28 04:30:47 +00:00
|
|
|
|
2023-01-27 04:03:15 +00:00
|
|
|
bool IsGameWidescreen() const { return m_is_game_widescreen; }
|
|
|
|
|
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
|
|
|
|
2017-02-24 14:16:28 +00:00
|
|
|
bool UseVertexDepthRange() const;
|
2019-06-29 09:27:53 +00:00
|
|
|
void DoState(PointerWrap& p);
|
2017-02-24 14:16:28 +00:00
|
|
|
|
2016-11-10 13:31:44 +00:00
|
|
|
bool CalculateTargetSize();
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2023-01-30 12:03:46 +00:00
|
|
|
int FrameCount() const { return m_frame_count; }
|
|
|
|
int FrameCountIncrement() { return m_frame_count++; }
|
2023-01-30 11:46:10 +00:00
|
|
|
|
|
|
|
void OnConfigChanged(u32 bits);
|
|
|
|
|
2023-01-29 16:06:25 +00:00
|
|
|
protected:
|
2023-01-30 11:46:10 +00:00
|
|
|
void UpdateWidescreen();
|
|
|
|
void UpdateWidescreenHeuristic();
|
2017-07-20 07:10:02 +00:00
|
|
|
|
2023-01-30 11:46:10 +00:00
|
|
|
std::tuple<int, int> CalculateTargetScale(int x, int y) const;
|
2011-03-27 02:55:08 +00:00
|
|
|
|
2020-01-26 01:04:50 +00:00
|
|
|
bool m_is_game_widescreen = false;
|
|
|
|
bool m_was_orthographically_anamorphic = false;
|
2011-09-08 15:09:24 +00:00
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
// The framebuffer size
|
2019-02-15 01:59:50 +00:00
|
|
|
int m_target_width = 1;
|
|
|
|
int m_target_height = 1;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2010-12-27 21:56:20 +00:00
|
|
|
private:
|
2023-01-28 02:13:49 +00:00
|
|
|
PixelFormat m_prev_efb_format;
|
2017-07-03 14:32:02 +00:00
|
|
|
unsigned int m_efb_scale = 1;
|
2016-10-07 19:39:23 +00:00
|
|
|
|
2019-06-29 09:27:53 +00:00
|
|
|
u64 m_last_xfb_ticks = 0;
|
|
|
|
u32 m_last_xfb_addr = 0;
|
2019-07-17 00:18:48 +00:00
|
|
|
u32 m_last_xfb_width = 0;
|
2019-06-29 09:27:53 +00:00
|
|
|
u32 m_last_xfb_stride = 0;
|
2019-07-17 00:18:48 +00:00
|
|
|
u32 m_last_xfb_height = 0;
|
2017-08-13 00:51:33 +00:00
|
|
|
|
2023-01-30 12:03:46 +00:00
|
|
|
int m_frame_count = 0;
|
|
|
|
|
2023-01-30 11:46:10 +00:00
|
|
|
EventHook m_update_widescreen_handle;
|
|
|
|
EventHook m_config_changed_handle;
|
2010-11-18 02:21:26 +00:00
|
|
|
};
|
|
|
|
|
2015-12-21 02:49:49 +00:00
|
|
|
extern std::unique_ptr<Renderer> g_renderer;
|