2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2010 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2010-11-18 02:21:26 +00:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------------------------
|
|
|
|
// GC graphics pipeline
|
|
|
|
// ---------------------------------------------------------------------------------------------
|
2015-01-11 00:17:29 -05: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 13:54:46 -05:00
|
|
|
#pragma once
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2018-01-21 20:22:45 +10:00
|
|
|
#include <array>
|
2015-12-20 21:49:49 -05:00
|
|
|
#include <memory>
|
2015-05-26 17:23:43 -04:00
|
|
|
#include <mutex>
|
2010-11-18 02:21:26 +00:00
|
|
|
#include <string>
|
2019-05-30 03:07:40 -04:00
|
|
|
#include <string_view>
|
2016-10-08 03:11:37 +02:00
|
|
|
#include <thread>
|
2017-01-23 19:33:26 +01:00
|
|
|
#include <tuple>
|
2016-01-17 16:54:31 -05:00
|
|
|
#include <vector>
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2016-01-17 16:54:31 -05:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
#include "Common/Flag.h"
|
2014-02-17 05:18:15 -05:00
|
|
|
#include "Common/MathUtil.h"
|
2022-03-05 14:52:43 -06:00
|
|
|
#include "VideoCommon/GraphicsModSystem/Runtime/GraphicsModManager.h"
|
2017-04-30 01:00:45 +10:00
|
|
|
#include "VideoCommon/RenderState.h"
|
2014-02-17 05:18:15 -05:00
|
|
|
|
2018-01-21 20:22:45 +10:00
|
|
|
class AbstractFramebuffer;
|
2017-09-08 19:42:56 +10:00
|
|
|
class AbstractPipeline;
|
|
|
|
class AbstractShader;
|
2017-05-29 17:02:09 -05:00
|
|
|
class AbstractTexture;
|
2017-10-22 00:49:40 +10:00
|
|
|
class AbstractStagingTexture;
|
2021-06-09 07:42:21 -04:00
|
|
|
class BoundingBox;
|
2018-10-10 00:57:52 +11:00
|
|
|
class NativeVertexFormat;
|
2022-12-27 17:42:02 +01:00
|
|
|
class PixelShaderManager;
|
2019-06-29 19:27:53 +10:00
|
|
|
class PointerWrap;
|
2017-09-08 19:42:56 +10:00
|
|
|
struct ComputePipelineConfig;
|
|
|
|
struct AbstractPipelineConfig;
|
2019-02-15 11:59:50 +10:00
|
|
|
struct PortableVertexDeclaration;
|
2023-01-27 17:03:15 +13:00
|
|
|
struct TextureConfig;
|
|
|
|
enum class AbstractTextureFormat : u32;
|
2017-09-08 19:42:56 +10:00
|
|
|
enum class ShaderStage;
|
2017-01-23 11:20:20 -05:00
|
|
|
enum class EFBAccessType;
|
2019-02-15 11:59:50 +10:00
|
|
|
enum class EFBReinterpretType;
|
2017-10-22 00:49:40 +10:00
|
|
|
enum class StagingTextureType;
|
2014-07-29 11:52:34 -05:00
|
|
|
|
2019-02-15 11:59:50 +10:00
|
|
|
namespace VideoCommon
|
|
|
|
{
|
2023-01-27 17:03:15 +13:00
|
|
|
class AsyncShaderCompiler;
|
|
|
|
}
|
2019-02-15 11:59:50 +10:00
|
|
|
|
2015-05-01 18:58:11 +02: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:
|
2019-01-19 00:35:00 +10:00
|
|
|
Renderer(int backbuffer_width, int backbuffer_height, float backbuffer_scale,
|
|
|
|
AbstractTextureFormat backbuffer_format);
|
2010-11-18 02:21:26 +00:00
|
|
|
virtual ~Renderer();
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2018-01-21 20:22:45 +10:00
|
|
|
using ClearColor = std::array<float, 4>;
|
|
|
|
|
2018-10-03 23:03:13 +10:00
|
|
|
virtual bool IsHeadless() const = 0;
|
|
|
|
|
2018-02-09 20:52:25 +10:00
|
|
|
virtual bool Initialize();
|
|
|
|
virtual void Shutdown();
|
|
|
|
|
2017-09-08 19:42:56 +10:00
|
|
|
virtual void SetPipeline(const AbstractPipeline* pipeline) {}
|
2018-01-21 22:12:32 +10:00
|
|
|
virtual void SetScissorRect(const MathUtil::Rectangle<int>& rc) {}
|
2018-01-21 23:13:25 +10:00
|
|
|
virtual void SetTexture(u32 index, const AbstractTexture* texture) {}
|
2017-09-09 18:30:15 +10:00
|
|
|
virtual void SetSamplerState(u32 index, const SamplerState& state) {}
|
2019-02-15 11:59:50 +10:00
|
|
|
virtual void SetComputeImageTexture(AbstractTexture* texture, bool read, bool write) {}
|
2018-01-21 23:13:25 +10:00
|
|
|
virtual void UnbindTexture(const AbstractTexture* texture) {}
|
2018-01-21 22:04:15 +10:00
|
|
|
virtual void SetViewport(float x, float y, float width, float height, float near_depth,
|
|
|
|
float far_depth)
|
|
|
|
{
|
|
|
|
}
|
2016-11-09 01:07:56 +01:00
|
|
|
virtual void SetFullscreen(bool enable_fullscreen) {}
|
2016-11-13 22:16:29 +01:00
|
|
|
virtual bool IsFullscreen() const { return false; }
|
2019-02-15 11:59:50 +10:00
|
|
|
virtual void BeginUtilityDrawing();
|
|
|
|
virtual void EndUtilityDrawing();
|
2021-08-28 00:30:05 -05:00
|
|
|
virtual std::unique_ptr<AbstractTexture> CreateTexture(const TextureConfig& config,
|
|
|
|
std::string_view name = "") = 0;
|
2017-10-22 00:49:40 +10:00
|
|
|
virtual std::unique_ptr<AbstractStagingTexture>
|
|
|
|
CreateStagingTexture(StagingTextureType type, const TextureConfig& config) = 0;
|
2018-01-21 20:22:45 +10:00
|
|
|
virtual std::unique_ptr<AbstractFramebuffer>
|
2019-02-15 11:59:50 +10:00
|
|
|
CreateFramebuffer(AbstractTexture* color_attachment, AbstractTexture* depth_attachment) = 0;
|
2018-01-21 20:22:45 +10:00
|
|
|
|
|
|
|
// Framebuffer operations.
|
2019-02-15 11:59:50 +10:00
|
|
|
virtual void SetFramebuffer(AbstractFramebuffer* framebuffer);
|
|
|
|
virtual void SetAndDiscardFramebuffer(AbstractFramebuffer* framebuffer);
|
|
|
|
virtual void SetAndClearFramebuffer(AbstractFramebuffer* framebuffer,
|
|
|
|
const ClearColor& color_value = {}, float depth_value = 0.0f);
|
2017-09-30 16:25:36 +10:00
|
|
|
|
2018-11-27 17:16:53 +10:00
|
|
|
// Drawing with currently-bound pipeline state.
|
|
|
|
virtual void Draw(u32 base_vertex, u32 num_vertices) {}
|
|
|
|
virtual void DrawIndexed(u32 base_index, u32 num_indices, u32 base_vertex) {}
|
|
|
|
|
2019-02-15 11:59:50 +10:00
|
|
|
// Dispatching compute shaders with currently-bound state.
|
2022-06-01 04:58:13 -05:00
|
|
|
virtual void DispatchComputeShader(const AbstractShader* shader, u32 groupsize_x, u32 groupsize_y,
|
|
|
|
u32 groupsize_z, u32 groups_x, u32 groups_y, u32 groups_z)
|
2019-02-15 11:59:50 +10:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-11-28 14:30:47 +10:00
|
|
|
// Binds the backbuffer for rendering. The buffer will be cleared immediately after binding.
|
|
|
|
// This is where any window size changes are detected, therefore m_backbuffer_width and/or
|
|
|
|
// m_backbuffer_height may change after this function returns.
|
|
|
|
virtual void BindBackbuffer(const ClearColor& clear_color = {}) {}
|
|
|
|
|
|
|
|
// Presents the backbuffer to the window system, or "swaps buffers".
|
|
|
|
virtual void PresentBackbuffer() {}
|
|
|
|
|
2017-09-08 19:42:56 +10:00
|
|
|
// Shader modules/objects.
|
2019-05-30 03:07:40 -04:00
|
|
|
virtual std::unique_ptr<AbstractShader> CreateShaderFromSource(ShaderStage stage,
|
2021-08-28 00:30:05 -05:00
|
|
|
std::string_view source,
|
|
|
|
std::string_view name = "") = 0;
|
|
|
|
virtual std::unique_ptr<AbstractShader> CreateShaderFromBinary(ShaderStage stage,
|
|
|
|
const void* data, size_t length,
|
|
|
|
std::string_view name = "") = 0;
|
2019-02-15 11:59:50 +10:00
|
|
|
virtual std::unique_ptr<NativeVertexFormat>
|
|
|
|
CreateNativeVertexFormat(const PortableVertexDeclaration& vtx_decl) = 0;
|
2019-04-15 21:55:26 +10:00
|
|
|
virtual std::unique_ptr<AbstractPipeline> CreatePipeline(const AbstractPipelineConfig& config,
|
|
|
|
const void* cache_data = nullptr,
|
|
|
|
size_t cache_data_length = 0) = 0;
|
2019-02-15 11:59:50 +10:00
|
|
|
|
|
|
|
AbstractFramebuffer* GetCurrentFramebuffer() const { return m_current_framebuffer; }
|
2017-09-08 19:42:56 +10:00
|
|
|
|
2017-07-03 16:32:02 +02:00
|
|
|
// Ideal internal resolution - multiple of the native EFB resolution
|
2017-04-08 19:40:04 -04:00
|
|
|
int GetTargetWidth() const { return m_target_width; }
|
|
|
|
int GetTargetHeight() const { return m_target_height; }
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2019-02-15 11:59:50 +10:00
|
|
|
// Sets viewport and scissor to the specified rectangle. rect is assumed to be in framebuffer
|
|
|
|
// coordinates, i.e. lower-left origin in OpenGL.
|
|
|
|
void SetViewportAndScissor(const MathUtil::Rectangle<int>& rect, float min_depth = 0.0f,
|
|
|
|
float max_depth = 1.0f);
|
|
|
|
|
|
|
|
// Scales a GPU texture using a copy shader.
|
|
|
|
virtual void ScaleTexture(AbstractFramebuffer* dst_framebuffer,
|
|
|
|
const MathUtil::Rectangle<int>& dst_rect,
|
|
|
|
const AbstractTexture* src_texture,
|
|
|
|
const MathUtil::Rectangle<int>& src_rect);
|
|
|
|
|
|
|
|
// Converts an upper-left to lower-left if required by the backend, optionally
|
|
|
|
// clamping to the framebuffer size.
|
|
|
|
MathUtil::Rectangle<int> ConvertFramebufferRectangle(const MathUtil::Rectangle<int>& rect,
|
2019-08-04 22:45:25 -04:00
|
|
|
u32 fb_width, u32 fb_height) const;
|
|
|
|
MathUtil::Rectangle<int>
|
|
|
|
ConvertFramebufferRectangle(const MathUtil::Rectangle<int>& rect,
|
|
|
|
const AbstractFramebuffer* framebuffer) const;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2019-02-15 11:59:50 +10: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-04 22:45:25 -04:00
|
|
|
MathUtil::Rectangle<int> ConvertEFBRectangle(const MathUtil::Rectangle<int>& rc) const;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2017-11-03 16:04:46 +01: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 19:40:04 -04:00
|
|
|
int EFBToScaledX(int x) const;
|
|
|
|
int EFBToScaledY(int y) const;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2010-12-10 15:54:14 +00:00
|
|
|
// Floating point versions of the above - only use them if really necessary
|
2017-04-08 19:40:04 -04:00
|
|
|
float EFBToScaledXf(float x) const;
|
|
|
|
float EFBToScaledYf(float y) const;
|
|
|
|
|
2019-04-16 00:47:46 +10:00
|
|
|
virtual void ClearScreen(const MathUtil::Rectangle<int>& rc, bool colorEnable, bool alphaEnable,
|
|
|
|
bool zEnable, u32 color, u32 z);
|
2019-02-15 11:59:50 +10:00
|
|
|
virtual void ReinterpretPixelData(EFBReinterpretType convtype);
|
2019-04-16 00:47:46 +10:00
|
|
|
void RenderToXFB(u32 xfbAddr, const MathUtil::Rectangle<int>& sourceRc, u32 fbStride,
|
|
|
|
u32 fbHeight, float Gamma = 1.0f);
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2019-02-15 11:59:50 +10: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 10:43:46 +02:00
|
|
|
|
2021-06-09 07:42:21 -04:00
|
|
|
bool IsBBoxEnabled() const;
|
2022-12-27 17:42:02 +01:00
|
|
|
void BBoxEnable(PixelShaderManager& pixel_shader_manager);
|
|
|
|
void BBoxDisable(PixelShaderManager& pixel_shader_manager);
|
2021-06-09 07:42:21 -04:00
|
|
|
u16 BBoxRead(u32 index);
|
|
|
|
void BBoxWrite(u32 index, u16 value);
|
2021-05-31 17:40:08 -04:00
|
|
|
void BBoxFlush();
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2018-11-28 14:30:47 +10:00
|
|
|
virtual void Flush() {}
|
2019-02-15 11:59:50 +10:00
|
|
|
virtual void WaitForGPUIdle() {}
|
2018-11-28 14:30:47 +10:00
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
// Finish up the current frame, print some stats
|
2019-03-31 14:11:53 +10:00
|
|
|
void Swap(u32 xfb_addr, u32 fb_width, u32 fb_stride, u32 fb_height, u64 ticks);
|
2018-11-28 14:30:47 +10:00
|
|
|
|
2020-01-25 19:04:50 -06:00
|
|
|
void UpdateWidescreenHeuristic();
|
2023-01-27 17:03:15 +13:00
|
|
|
bool IsGameWidescreen() const { return m_is_game_widescreen; }
|
|
|
|
|
|
|
|
// A simple presentation fallback, only used by video software
|
|
|
|
virtual void ShowImage(const AbstractTexture* source_texture,
|
|
|
|
const MathUtil::Rectangle<int>& source_rc)
|
|
|
|
{
|
|
|
|
}
|
2020-01-25 19:04:50 -06:00
|
|
|
|
2023-01-27 17:03:15 +13:00
|
|
|
// For opengl's glDrawBuffer
|
|
|
|
virtual void SelectLeftBuffer() {}
|
|
|
|
virtual void SelectRightBuffer() {}
|
|
|
|
virtual void SelectMainBuffer() {}
|
2018-11-28 14:30:47 +10:00
|
|
|
|
|
|
|
// Called when the configuration changes, and backend structures need to be updated.
|
|
|
|
virtual void OnConfigChanged(u32 bits) {}
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2021-02-10 18:11:31 -08:00
|
|
|
PixelFormat GetPrevPixelFormat() const { return m_prev_efb_format; }
|
|
|
|
void StorePixelFormat(PixelFormat new_format) { m_prev_efb_format = new_format; }
|
2019-03-09 23:31:29 +10:00
|
|
|
bool EFBHasAlphaChannel() const;
|
2023-01-27 17:03:15 +13:00
|
|
|
|
2017-02-24 15:16:28 +01:00
|
|
|
bool UseVertexDepthRange() const;
|
2019-06-29 19:27:53 +10:00
|
|
|
void DoState(PointerWrap& p);
|
2017-02-24 15:16:28 +01:00
|
|
|
|
2018-02-25 17:56:09 +10:00
|
|
|
virtual std::unique_ptr<VideoCommon::AsyncShaderCompiler> CreateAsyncShaderCompiler();
|
|
|
|
|
2019-10-02 12:19:47 +10:00
|
|
|
// Returns true if a layer-expanding geometry shader should be used when rendering the user
|
|
|
|
// interface and final XFB.
|
|
|
|
bool UseGeometryShaderForUI() const;
|
|
|
|
|
2019-08-17 14:40:58 -05:00
|
|
|
// Will forcibly reload all textures on the next swap
|
|
|
|
void ForceReloadTextures();
|
|
|
|
|
2022-03-05 14:52:43 -06:00
|
|
|
const GraphicsModManager& GetGraphicsModManager() const;
|
|
|
|
|
2018-11-28 14:30:47 +10:00
|
|
|
// Bitmask containing information about which configuration has changed for the backend.
|
|
|
|
enum ConfigChangeBits : u32
|
|
|
|
{
|
|
|
|
CONFIG_CHANGE_BIT_HOST_CONFIG = (1 << 0),
|
|
|
|
CONFIG_CHANGE_BIT_MULTISAMPLES = (1 << 1),
|
|
|
|
CONFIG_CHANGE_BIT_STEREO_MODE = (1 << 2),
|
|
|
|
CONFIG_CHANGE_BIT_TARGET_SIZE = (1 << 3),
|
|
|
|
CONFIG_CHANGE_BIT_ANISOTROPY = (1 << 4),
|
|
|
|
CONFIG_CHANGE_BIT_FORCE_TEXTURE_FILTERING = (1 << 5),
|
|
|
|
CONFIG_CHANGE_BIT_VSYNC = (1 << 6),
|
|
|
|
CONFIG_CHANGE_BIT_BBOX = (1 << 7)
|
|
|
|
};
|
|
|
|
|
2023-01-27 17:03:15 +13:00
|
|
|
protected:
|
2017-04-09 14:38:43 -04:00
|
|
|
std::tuple<int, int> CalculateTargetScale(int x, int y) const;
|
2016-11-10 23:31:44 +10:00
|
|
|
bool CalculateTargetSize();
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2018-11-28 14:30:47 +10:00
|
|
|
void CheckForConfigChanges();
|
2017-07-20 17:10:02 +10:00
|
|
|
|
2017-03-04 16:39:50 +10:00
|
|
|
void CheckFifoRecording();
|
|
|
|
void RecordVideoMemory();
|
2011-03-27 02:55:08 +00:00
|
|
|
|
2021-06-09 07:42:21 -04:00
|
|
|
virtual std::unique_ptr<BoundingBox> CreateBoundingBox() const = 0;
|
2021-05-31 17:40:08 -04:00
|
|
|
|
2019-02-15 11:59:50 +10:00
|
|
|
AbstractFramebuffer* m_current_framebuffer = nullptr;
|
|
|
|
const AbstractPipeline* m_current_pipeline = nullptr;
|
2018-01-21 20:22:45 +10:00
|
|
|
|
2020-01-25 19:04:50 -06:00
|
|
|
bool m_is_game_widescreen = false;
|
|
|
|
bool m_was_orthographically_anamorphic = false;
|
2011-09-08 17:09:24 +02:00
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
// The framebuffer size
|
2019-02-15 11:59:50 +10:00
|
|
|
int m_target_width = 1;
|
|
|
|
int m_target_height = 1;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2019-02-15 11:59:50 +10:00
|
|
|
int m_frame_count = 0;
|
2010-12-27 21:56:20 +00:00
|
|
|
|
|
|
|
private:
|
2021-02-10 18:11:31 -08:00
|
|
|
PixelFormat m_prev_efb_format = PixelFormat::INVALID_FMT;
|
2017-07-03 16:32:02 +02:00
|
|
|
unsigned int m_efb_scale = 1;
|
2016-10-07 21:39:23 +02:00
|
|
|
|
2019-06-29 19:27:53 +10:00
|
|
|
u64 m_last_xfb_ticks = 0;
|
|
|
|
u32 m_last_xfb_addr = 0;
|
2019-07-16 20:18:48 -04:00
|
|
|
u32 m_last_xfb_width = 0;
|
2019-06-29 19:27:53 +10:00
|
|
|
u32 m_last_xfb_stride = 0;
|
2019-07-16 20:18:48 -04:00
|
|
|
u32 m_last_xfb_height = 0;
|
2017-08-12 19:51:33 -05:00
|
|
|
|
2021-06-09 07:42:21 -04:00
|
|
|
std::unique_ptr<BoundingBox> m_bounding_box;
|
|
|
|
|
2021-05-31 16:31:27 -04:00
|
|
|
// Nintendo's SDK seems to write "default" bounding box values before every draw (1023 0 1023 0
|
|
|
|
// are the only values encountered so far, which happen to be the extents allowed by the BP
|
|
|
|
// registers) to reset the registers for comparison in the pixel engine, and presumably to detect
|
|
|
|
// whether GX has updated the registers with real values.
|
|
|
|
//
|
|
|
|
// We can store these values when Bounding Box emulation is disabled and return them on read,
|
|
|
|
// which the game will interpret as "no pixels have been drawn"
|
|
|
|
//
|
|
|
|
// This produces much better results than just returning garbage, which can cause games like
|
|
|
|
// Ultimate Spider-Man to crash
|
|
|
|
std::array<u16, 4> m_bounding_box_fallback = {};
|
|
|
|
|
2019-08-17 14:40:58 -05:00
|
|
|
Common::Flag m_force_reload_textures;
|
2022-03-05 14:52:43 -06:00
|
|
|
|
|
|
|
GraphicsModManager m_graphics_mod_manager;
|
2010-11-18 02:21:26 +00:00
|
|
|
};
|
|
|
|
|
2015-12-20 21:49:49 -05:00
|
|
|
extern std::unique_ptr<Renderer> g_renderer;
|