2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2014-10-16 10:52:32 -06:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-12-09 15:00:08 -07:00
|
|
|
#include <fmt/format.h>
|
2017-07-19 21:52:23 -06:00
|
|
|
#include <functional>
|
2021-12-09 15:00:08 -07:00
|
|
|
|
2017-02-01 08:56:13 -07:00
|
|
|
#include "Common/CommonTypes.h"
|
2021-12-09 15:00:08 -07:00
|
|
|
|
2017-04-30 02:07:57 -06:00
|
|
|
#include "VideoCommon/RenderState.h"
|
2014-10-16 10:52:32 -06:00
|
|
|
#include "VideoCommon/ShaderGenCommon.h"
|
2016-07-21 17:04:57 -06:00
|
|
|
|
|
|
|
enum class APIType;
|
2014-10-16 10:52:32 -06:00
|
|
|
|
|
|
|
#pragma pack(1)
|
|
|
|
struct geometry_shader_uid_data
|
|
|
|
{
|
|
|
|
u32 NumValues() const { return sizeof(geometry_shader_uid_data); }
|
2017-06-24 02:18:53 -06:00
|
|
|
bool IsPassthrough() const;
|
2016-06-24 02:43:46 -06:00
|
|
|
|
2014-11-22 11:18:45 -07:00
|
|
|
u32 numTexGens : 4;
|
2017-09-09 02:30:15 -06:00
|
|
|
u32 primitive_type : 2;
|
2014-10-16 10:52:32 -06:00
|
|
|
};
|
|
|
|
#pragma pack()
|
|
|
|
|
2019-05-29 23:05:06 -06:00
|
|
|
using GeometryShaderUid = ShaderUid<geometry_shader_uid_data>;
|
2014-10-16 10:52:32 -06:00
|
|
|
|
2021-08-01 16:11:22 -06:00
|
|
|
ShaderCode GenerateGeometryShaderCode(APIType api_type, const ShaderHostConfig& host_config,
|
2017-07-20 01:10:02 -06:00
|
|
|
const geometry_shader_uid_data* uid_data);
|
2017-04-30 02:07:57 -06:00
|
|
|
GeometryShaderUid GetGeometryShaderUid(PrimitiveType primitive_type);
|
2017-07-19 21:52:23 -06:00
|
|
|
void EnumerateGeometryShaderUids(const std::function<void(const GeometryShaderUid&)>& callback);
|
2021-12-09 15:00:08 -07:00
|
|
|
|
|
|
|
template <>
|
|
|
|
struct fmt::formatter<geometry_shader_uid_data>
|
|
|
|
{
|
|
|
|
constexpr auto parse(format_parse_context& ctx) { return ctx.begin(); }
|
|
|
|
template <typename FormatContext>
|
|
|
|
auto format(const geometry_shader_uid_data& uid, FormatContext& ctx)
|
|
|
|
{
|
|
|
|
return format_to(ctx.out(), "passthrough: {}, {} tex gens, primitive type {}",
|
|
|
|
uid.IsPassthrough(), uid.numTexGens, uid.primitive_type);
|
|
|
|
}
|
|
|
|
};
|