2018-02-24 15:15:35 +00:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-02-24 15:15:35 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <array>
|
|
|
|
#include <cstddef>
|
2018-02-27 09:38:00 +00:00
|
|
|
#include <cstring>
|
2018-02-24 15:15:35 +00:00
|
|
|
#include <map>
|
|
|
|
#include <memory>
|
|
|
|
#include <optional>
|
|
|
|
#include <string>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2020-09-15 10:29:41 +00:00
|
|
|
#include "Common/IOFile.h"
|
2018-02-24 15:15:35 +00:00
|
|
|
#include "Common/LinearDiskCache.h"
|
|
|
|
|
|
|
|
#include "VideoCommon/AbstractPipeline.h"
|
|
|
|
#include "VideoCommon/AbstractShader.h"
|
|
|
|
#include "VideoCommon/AsyncShaderCompiler.h"
|
2018-03-01 09:21:06 +00:00
|
|
|
#include "VideoCommon/GXPipelineTypes.h"
|
2018-02-24 15:15:35 +00:00
|
|
|
#include "VideoCommon/GeometryShaderGen.h"
|
|
|
|
#include "VideoCommon/PixelShaderGen.h"
|
|
|
|
#include "VideoCommon/RenderState.h"
|
2019-02-15 01:59:50 +00:00
|
|
|
#include "VideoCommon/TextureCacheBase.h"
|
|
|
|
#include "VideoCommon/TextureConversionShader.h"
|
|
|
|
#include "VideoCommon/TextureConverterShaderGen.h"
|
2018-02-24 15:15:35 +00:00
|
|
|
#include "VideoCommon/UberShaderPixel.h"
|
|
|
|
#include "VideoCommon/UberShaderVertex.h"
|
|
|
|
#include "VideoCommon/VertexShaderGen.h"
|
2023-01-30 11:46:10 +00:00
|
|
|
#include "VideoCommon/VideoEvents.h"
|
2018-02-24 15:15:35 +00:00
|
|
|
|
|
|
|
class NativeVertexFormat;
|
2018-07-17 03:24:36 +00:00
|
|
|
enum class AbstractTextureFormat : u32;
|
2019-12-22 18:40:40 +00:00
|
|
|
enum class APIType;
|
2019-07-14 05:24:12 +00:00
|
|
|
enum class TextureFormat;
|
2019-02-15 01:59:50 +00:00
|
|
|
enum class TLUTFormat;
|
2018-02-24 15:15:35 +00:00
|
|
|
|
|
|
|
namespace VideoCommon
|
|
|
|
{
|
|
|
|
class ShaderCache final
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ShaderCache();
|
|
|
|
~ShaderCache();
|
|
|
|
|
|
|
|
// Perform at startup, create descriptor layouts, compiles all static shaders.
|
|
|
|
bool Initialize();
|
|
|
|
void Shutdown();
|
|
|
|
|
2019-02-15 01:59:50 +00:00
|
|
|
// Compiles/loads cached shaders.
|
|
|
|
void InitializeShaderCache();
|
|
|
|
|
|
|
|
// Changes the shader host config. Shaders should be reloaded afterwards.
|
2021-07-29 04:11:15 +00:00
|
|
|
void SetHostConfig(const ShaderHostConfig& host_config) { m_host_config.bits = host_config.bits; }
|
2018-02-24 15:15:35 +00:00
|
|
|
|
|
|
|
// Reloads/recreates all shaders and pipelines.
|
|
|
|
void Reload();
|
|
|
|
|
|
|
|
// Retrieves all pending shaders/pipelines from the async compiler.
|
|
|
|
void RetrieveAsyncShaders();
|
|
|
|
|
|
|
|
// Accesses ShaderGen shader caches
|
2018-03-01 09:21:06 +00:00
|
|
|
const AbstractPipeline* GetPipelineForUid(const GXPipelineUid& uid);
|
|
|
|
const AbstractPipeline* GetUberPipelineForUid(const GXUberPipelineUid& uid);
|
2018-02-24 15:15:35 +00:00
|
|
|
|
|
|
|
// Accesses ShaderGen shader caches asynchronously.
|
|
|
|
// The optional will be empty if this pipeline is now background compiling.
|
2018-03-01 09:21:06 +00:00
|
|
|
std::optional<const AbstractPipeline*> GetPipelineForUidAsync(const GXPipelineUid& uid);
|
2018-02-24 15:15:35 +00:00
|
|
|
|
2019-02-15 01:59:50 +00:00
|
|
|
// Shared shaders
|
|
|
|
const AbstractShader* GetScreenQuadVertexShader() const
|
|
|
|
{
|
|
|
|
return m_screen_quad_vertex_shader.get();
|
|
|
|
}
|
|
|
|
const AbstractShader* GetTextureCopyVertexShader() const
|
|
|
|
{
|
|
|
|
return m_texture_copy_vertex_shader.get();
|
|
|
|
}
|
|
|
|
const AbstractShader* GetEFBCopyVertexShader() const { return m_efb_copy_vertex_shader.get(); }
|
|
|
|
const AbstractShader* GetTexcoordGeometryShader() const
|
|
|
|
{
|
|
|
|
return m_texcoord_geometry_shader.get();
|
|
|
|
}
|
|
|
|
const AbstractShader* GetTextureCopyPixelShader() const
|
|
|
|
{
|
|
|
|
return m_texture_copy_pixel_shader.get();
|
|
|
|
}
|
|
|
|
const AbstractShader* GetColorGeometryShader() const { return m_color_geometry_shader.get(); }
|
|
|
|
const AbstractShader* GetColorPixelShader() const { return m_color_pixel_shader.get(); }
|
|
|
|
|
|
|
|
// EFB copy to RAM/VRAM pipelines
|
|
|
|
const AbstractPipeline*
|
|
|
|
GetEFBCopyToVRAMPipeline(const TextureConversionShaderGen::TCShaderUid& uid);
|
|
|
|
const AbstractPipeline* GetEFBCopyToRAMPipeline(const EFBCopyParams& uid);
|
|
|
|
|
|
|
|
// RGBA8 framebuffer copy pipelines
|
|
|
|
const AbstractPipeline* GetRGBA8CopyPipeline() const { return m_copy_rgba8_pipeline.get(); }
|
|
|
|
const AbstractPipeline* GetRGBA8StereoCopyPipeline() const
|
|
|
|
{
|
|
|
|
return m_rgba8_stereo_copy_pipeline.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Palette texture conversion pipelines
|
|
|
|
const AbstractPipeline* GetPaletteConversionPipeline(TLUTFormat format);
|
|
|
|
|
2019-07-14 05:24:12 +00:00
|
|
|
// Texture reinterpret pipelines
|
|
|
|
const AbstractPipeline* GetTextureReinterpretPipeline(TextureFormat from_format,
|
|
|
|
TextureFormat to_format);
|
|
|
|
|
2019-02-15 01:59:50 +00:00
|
|
|
// Texture decoding compute shaders
|
2022-06-11 07:51:24 +00:00
|
|
|
const AbstractShader* GetTextureDecodingShader(TextureFormat format,
|
|
|
|
std::optional<TLUTFormat> palette_format);
|
2019-02-15 01:59:50 +00:00
|
|
|
|
2018-02-24 15:15:35 +00:00
|
|
|
private:
|
2019-02-15 01:59:50 +00:00
|
|
|
static constexpr size_t NUM_PALETTE_CONVERSION_SHADERS = 3;
|
|
|
|
|
2018-03-01 09:21:06 +00:00
|
|
|
void WaitForAsyncCompiler();
|
2019-04-15 14:34:52 +00:00
|
|
|
void LoadCaches();
|
|
|
|
void ClearCaches();
|
2018-02-24 15:15:35 +00:00
|
|
|
void LoadPipelineUIDCache();
|
2018-03-11 04:30:48 +00:00
|
|
|
void ClosePipelineUIDCache();
|
2018-02-24 15:15:35 +00:00
|
|
|
void CompileMissingPipelines();
|
2018-03-11 04:24:45 +00:00
|
|
|
void QueueUberShaderPipelines();
|
2019-02-15 01:59:50 +00:00
|
|
|
bool CompileSharedPipelines();
|
2018-02-24 15:15:35 +00:00
|
|
|
|
|
|
|
// GX shader compiler methods
|
|
|
|
std::unique_ptr<AbstractShader> CompileVertexShader(const VertexShaderUid& uid) const;
|
|
|
|
std::unique_ptr<AbstractShader>
|
|
|
|
CompileVertexUberShader(const UberShader::VertexShaderUid& uid) const;
|
|
|
|
std::unique_ptr<AbstractShader> CompilePixelShader(const PixelShaderUid& uid) const;
|
|
|
|
std::unique_ptr<AbstractShader>
|
|
|
|
CompilePixelUberShader(const UberShader::PixelShaderUid& uid) const;
|
|
|
|
const AbstractShader* InsertVertexShader(const VertexShaderUid& uid,
|
|
|
|
std::unique_ptr<AbstractShader> shader);
|
|
|
|
const AbstractShader* InsertVertexUberShader(const UberShader::VertexShaderUid& uid,
|
|
|
|
std::unique_ptr<AbstractShader> shader);
|
|
|
|
const AbstractShader* InsertPixelShader(const PixelShaderUid& uid,
|
|
|
|
std::unique_ptr<AbstractShader> shader);
|
|
|
|
const AbstractShader* InsertPixelUberShader(const UberShader::PixelShaderUid& uid,
|
|
|
|
std::unique_ptr<AbstractShader> shader);
|
|
|
|
const AbstractShader* CreateGeometryShader(const GeometryShaderUid& uid);
|
|
|
|
bool NeedsGeometryShader(const GeometryShaderUid& uid) const;
|
|
|
|
|
2019-02-15 01:59:50 +00:00
|
|
|
// Should we use geometry shaders for EFB copies?
|
|
|
|
bool UseGeometryShaderForEFBCopies() const;
|
|
|
|
|
2018-02-24 15:15:35 +00:00
|
|
|
// GX pipeline compiler methods
|
|
|
|
AbstractPipelineConfig
|
|
|
|
GetGXPipelineConfig(const NativeVertexFormat* vertex_format, const AbstractShader* vertex_shader,
|
|
|
|
const AbstractShader* geometry_shader, const AbstractShader* pixel_shader,
|
|
|
|
const RasterizationState& rasterization_state, const DepthState& depth_state,
|
2022-06-19 01:03:28 +00:00
|
|
|
const BlendingState& blending_state, AbstractPipelineUsage usage);
|
2018-03-01 09:21:06 +00:00
|
|
|
std::optional<AbstractPipelineConfig> GetGXPipelineConfig(const GXPipelineUid& uid);
|
2019-04-15 14:34:52 +00:00
|
|
|
std::optional<AbstractPipelineConfig> GetGXPipelineConfig(const GXUberPipelineUid& uid);
|
2018-03-01 09:21:06 +00:00
|
|
|
const AbstractPipeline* InsertGXPipeline(const GXPipelineUid& config,
|
2018-02-24 15:15:35 +00:00
|
|
|
std::unique_ptr<AbstractPipeline> pipeline);
|
2018-03-01 09:21:06 +00:00
|
|
|
const AbstractPipeline* InsertGXUberPipeline(const GXUberPipelineUid& config,
|
2018-02-24 15:15:35 +00:00
|
|
|
std::unique_ptr<AbstractPipeline> pipeline);
|
2018-03-11 04:30:48 +00:00
|
|
|
void AddSerializedGXPipelineUID(const SerializedGXPipelineUid& uid);
|
2018-03-01 09:21:06 +00:00
|
|
|
void AppendGXPipelineUID(const GXPipelineUid& config);
|
2018-02-24 15:15:35 +00:00
|
|
|
|
|
|
|
// ASync Compiler Methods
|
2018-03-16 12:48:56 +00:00
|
|
|
void QueueVertexShaderCompile(const VertexShaderUid& uid, u32 priority);
|
|
|
|
void QueueVertexUberShaderCompile(const UberShader::VertexShaderUid& uid, u32 priority);
|
|
|
|
void QueuePixelShaderCompile(const PixelShaderUid& uid, u32 priority);
|
|
|
|
void QueuePixelUberShaderCompile(const UberShader::PixelShaderUid& uid, u32 priority);
|
|
|
|
void QueuePipelineCompile(const GXPipelineUid& uid, u32 priority);
|
|
|
|
void QueueUberPipelineCompile(const GXUberPipelineUid& uid, u32 priority);
|
|
|
|
|
2019-04-15 14:34:52 +00:00
|
|
|
// Populating various caches.
|
|
|
|
template <ShaderStage stage, typename K, typename T>
|
|
|
|
void LoadShaderCache(T& cache, APIType api_type, const char* type, bool include_gameid);
|
|
|
|
template <typename T>
|
|
|
|
void ClearShaderCache(T& cache);
|
|
|
|
template <typename KeyType, typename DiskKeyType, typename T>
|
2023-04-19 13:14:36 +00:00
|
|
|
void LoadPipelineCache(T& cache, Common::LinearDiskCache<DiskKeyType, u8>& disk_cache,
|
|
|
|
APIType api_type, const char* type, bool include_gameid);
|
2019-04-15 14:34:52 +00:00
|
|
|
template <typename T, typename Y>
|
|
|
|
void ClearPipelineCache(T& cache, Y& disk_cache);
|
|
|
|
|
2018-03-16 12:48:56 +00:00
|
|
|
// Priorities for compiling. The lower the value, the sooner the pipeline is compiled.
|
|
|
|
// The shader cache is compiled last, as it is the least likely to be required. On demand
|
|
|
|
// shaders are always compiled before pending ubershaders, as we want to use the ubershader
|
|
|
|
// for as few frames as possible, otherwise we risk framerate drops.
|
|
|
|
enum : u32
|
|
|
|
{
|
|
|
|
COMPILE_PRIORITY_ONDEMAND_PIPELINE = 100,
|
|
|
|
COMPILE_PRIORITY_UBERSHADER_PIPELINE = 200,
|
|
|
|
COMPILE_PRIORITY_SHADERCACHE_PIPELINE = 300
|
|
|
|
};
|
2018-02-24 15:15:35 +00:00
|
|
|
|
|
|
|
// Configuration bits.
|
2019-12-22 18:40:40 +00:00
|
|
|
APIType m_api_type;
|
2018-02-24 15:15:35 +00:00
|
|
|
ShaderHostConfig m_host_config = {};
|
|
|
|
std::unique_ptr<AsyncShaderCompiler> m_async_shader_compiler;
|
|
|
|
|
2019-02-15 01:59:50 +00:00
|
|
|
// Shared shaders
|
|
|
|
std::unique_ptr<AbstractShader> m_screen_quad_vertex_shader;
|
|
|
|
std::unique_ptr<AbstractShader> m_texture_copy_vertex_shader;
|
|
|
|
std::unique_ptr<AbstractShader> m_efb_copy_vertex_shader;
|
|
|
|
std::unique_ptr<AbstractShader> m_texcoord_geometry_shader;
|
|
|
|
std::unique_ptr<AbstractShader> m_color_geometry_shader;
|
|
|
|
std::unique_ptr<AbstractShader> m_texture_copy_pixel_shader;
|
|
|
|
std::unique_ptr<AbstractShader> m_color_pixel_shader;
|
|
|
|
|
2018-02-24 15:15:35 +00:00
|
|
|
// GX Shader Caches
|
|
|
|
template <typename Uid>
|
|
|
|
struct ShaderModuleCache
|
|
|
|
{
|
|
|
|
struct Shader
|
|
|
|
{
|
|
|
|
std::unique_ptr<AbstractShader> shader;
|
2021-09-04 04:43:19 +00:00
|
|
|
bool pending = false;
|
2018-02-24 15:15:35 +00:00
|
|
|
};
|
|
|
|
std::map<Uid, Shader> shader_map;
|
2023-04-19 13:14:36 +00:00
|
|
|
Common::LinearDiskCache<Uid, u8> disk_cache;
|
2018-02-24 15:15:35 +00:00
|
|
|
};
|
|
|
|
ShaderModuleCache<VertexShaderUid> m_vs_cache;
|
|
|
|
ShaderModuleCache<GeometryShaderUid> m_gs_cache;
|
|
|
|
ShaderModuleCache<PixelShaderUid> m_ps_cache;
|
|
|
|
ShaderModuleCache<UberShader::VertexShaderUid> m_uber_vs_cache;
|
|
|
|
ShaderModuleCache<UberShader::PixelShaderUid> m_uber_ps_cache;
|
|
|
|
|
|
|
|
// GX Pipeline Caches - .first - pipeline, .second - pending
|
2018-03-01 09:21:06 +00:00
|
|
|
std::map<GXPipelineUid, std::pair<std::unique_ptr<AbstractPipeline>, bool>> m_gx_pipeline_cache;
|
|
|
|
std::map<GXUberPipelineUid, std::pair<std::unique_ptr<AbstractPipeline>, bool>>
|
2018-02-24 15:15:35 +00:00
|
|
|
m_gx_uber_pipeline_cache;
|
2018-03-11 04:30:48 +00:00
|
|
|
File::IOFile m_gx_pipeline_uid_cache_file;
|
2023-04-19 13:14:36 +00:00
|
|
|
Common::LinearDiskCache<SerializedGXPipelineUid, u8> m_gx_pipeline_disk_cache;
|
|
|
|
Common::LinearDiskCache<SerializedGXUberPipelineUid, u8> m_gx_uber_pipeline_disk_cache;
|
2019-02-15 01:59:50 +00:00
|
|
|
|
|
|
|
// EFB copy to VRAM/RAM pipelines
|
|
|
|
std::map<TextureConversionShaderGen::TCShaderUid, std::unique_ptr<AbstractPipeline>>
|
|
|
|
m_efb_copy_to_vram_pipelines;
|
|
|
|
std::map<EFBCopyParams, std::unique_ptr<AbstractPipeline>> m_efb_copy_to_ram_pipelines;
|
|
|
|
|
|
|
|
// Copy pipeline for RGBA8 textures
|
|
|
|
std::unique_ptr<AbstractPipeline> m_copy_rgba8_pipeline;
|
|
|
|
std::unique_ptr<AbstractPipeline> m_rgba8_stereo_copy_pipeline;
|
|
|
|
|
|
|
|
// Palette conversion pipelines
|
|
|
|
std::array<std::unique_ptr<AbstractPipeline>, NUM_PALETTE_CONVERSION_SHADERS>
|
|
|
|
m_palette_conversion_pipelines;
|
|
|
|
|
2019-07-14 05:24:12 +00:00
|
|
|
// Texture reinterpreting pipeline
|
|
|
|
std::map<std::pair<TextureFormat, TextureFormat>, std::unique_ptr<AbstractPipeline>>
|
|
|
|
m_texture_reinterpret_pipelines;
|
|
|
|
|
2019-02-15 01:59:50 +00:00
|
|
|
// Texture decoding shaders
|
|
|
|
std::map<std::pair<u32, u32>, std::unique_ptr<AbstractShader>> m_texture_decoding_shaders;
|
2023-01-30 11:46:10 +00:00
|
|
|
|
2023-02-03 00:18:37 +00:00
|
|
|
Common::EventHook m_frame_end_handler;
|
2018-02-24 15:15:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace VideoCommon
|
|
|
|
|
|
|
|
extern std::unique_ptr<VideoCommon::ShaderCache> g_shader_cache;
|