2017-07-19 23:25:24 -06:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-07-19 23:25:24 -06:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <functional>
|
2019-12-22 11:40:40 -07:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
#include "VideoCommon/ShaderGenCommon.h"
|
|
|
|
|
|
|
|
enum class APIType;
|
2017-07-19 23:25:24 -06:00
|
|
|
|
|
|
|
namespace UberShader
|
|
|
|
{
|
|
|
|
#pragma pack(1)
|
|
|
|
struct pixel_ubershader_uid_data
|
|
|
|
{
|
|
|
|
u32 num_texgens : 4;
|
|
|
|
u32 early_depth : 1;
|
|
|
|
u32 per_pixel_depth : 1;
|
2017-09-03 00:32:37 -06:00
|
|
|
u32 uint_output : 1;
|
2022-06-11 20:03:09 -06:00
|
|
|
u32 no_dual_src : 1;
|
2017-07-19 23:25:24 -06:00
|
|
|
|
|
|
|
u32 NumValues() const { return sizeof(pixel_ubershader_uid_data); }
|
|
|
|
};
|
|
|
|
#pragma pack()
|
|
|
|
|
2019-05-29 23:05:06 -06:00
|
|
|
using PixelShaderUid = ShaderUid<pixel_ubershader_uid_data>;
|
2017-07-19 23:25:24 -06:00
|
|
|
|
|
|
|
PixelShaderUid GetPixelShaderUid();
|
|
|
|
|
2021-08-01 16:09:20 -06:00
|
|
|
ShaderCode GenPixelShader(APIType api_type, const ShaderHostConfig& host_config,
|
2017-07-19 23:25:24 -06:00
|
|
|
const pixel_ubershader_uid_data* uid_data);
|
|
|
|
|
|
|
|
void EnumeratePixelShaderUids(const std::function<void(const PixelShaderUid&)>& callback);
|
2021-08-01 16:09:20 -06:00
|
|
|
void ClearUnusedPixelShaderUidBits(APIType api_type, const ShaderHostConfig& host_config,
|
2018-05-25 08:09:10 -06:00
|
|
|
PixelShaderUid* uid);
|
2019-05-05 17:48:12 -06:00
|
|
|
} // namespace UberShader
|
2022-06-13 02:59:32 -06:00
|
|
|
|
|
|
|
template <>
|
|
|
|
struct fmt::formatter<UberShader::pixel_ubershader_uid_data>
|
|
|
|
{
|
|
|
|
constexpr auto parse(format_parse_context& ctx) { return ctx.begin(); }
|
|
|
|
template <typename FormatContext>
|
|
|
|
auto format(const UberShader::pixel_ubershader_uid_data& uid, FormatContext& ctx) const
|
|
|
|
{
|
2022-06-11 20:03:09 -06:00
|
|
|
return fmt::format_to(
|
|
|
|
ctx.out(), "Pixel UberShader for {} texgens{}{}{}{}", uid.num_texgens,
|
|
|
|
uid.early_depth ? ", early-depth" : "", uid.per_pixel_depth ? ", per-pixel depth" : "",
|
|
|
|
uid.uint_output ? ", uint output" : "", uid.no_dual_src ? ", no dual-source blending" : "");
|
2022-06-13 02:59:32 -06:00
|
|
|
}
|
|
|
|
};
|