2015-05-24 07:55:12 +03:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 04:22:19 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2014-02-10 20:54:46 +02:00
|
|
|
#pragma once
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2016-01-17 23:54:31 +02:00
|
|
|
#include "Common/CommonTypes.h"
|
2022-10-12 00:23:38 +03:00
|
|
|
#include "Common/EnumFormatter.h"
|
|
|
|
|
2014-02-17 12:18:15 +02:00
|
|
|
#include "VideoCommon/LightingShaderGen.h"
|
|
|
|
#include "VideoCommon/ShaderGenCommon.h"
|
2016-07-22 02:04:57 +03:00
|
|
|
|
|
|
|
enum class APIType;
|
2021-02-11 02:01:42 +02:00
|
|
|
enum class TexInputForm : u32;
|
|
|
|
enum class TexGenType : u32;
|
|
|
|
enum class SourceRow : u32;
|
2022-07-23 08:47:04 +03:00
|
|
|
enum class VSExpand : u32;
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2013-01-11 12:59:42 +02:00
|
|
|
// TODO should be reordered
|
2022-10-12 00:23:38 +03:00
|
|
|
enum class ShaderAttrib : u32
|
2018-03-18 21:40:37 +02:00
|
|
|
{
|
2022-10-12 00:23:38 +03:00
|
|
|
Position = 0,
|
|
|
|
PositionMatrix = 1,
|
|
|
|
Normal = 2,
|
|
|
|
Tangent = 3,
|
|
|
|
Binormal = 4,
|
|
|
|
Color0 = 5,
|
|
|
|
Color1 = 6,
|
|
|
|
|
|
|
|
TexCoord0 = 8,
|
|
|
|
TexCoord1 = 9,
|
|
|
|
TexCoord2 = 10,
|
|
|
|
TexCoord3 = 11,
|
|
|
|
TexCoord4 = 12,
|
|
|
|
TexCoord5 = 13,
|
|
|
|
TexCoord6 = 14,
|
|
|
|
TexCoord7 = 15
|
2018-03-18 21:40:37 +02:00
|
|
|
};
|
2022-10-12 00:23:38 +03:00
|
|
|
template <>
|
|
|
|
struct fmt::formatter<ShaderAttrib> : EnumFormatter<ShaderAttrib::TexCoord7>
|
|
|
|
{
|
|
|
|
static constexpr array_type names = {
|
|
|
|
"Position", "Position Matrix", "Normal", "Tangent", "Binormal", "Color 0",
|
|
|
|
"Color 1", nullptr, "Tex Coord 0", "Tex Coord 1", "Tex Coord 2", "Tex Coord 3",
|
|
|
|
"Tex Coord 4", "Tex Coord 5", "Tex Coord 6", "Tex Coord 7"};
|
|
|
|
constexpr formatter() : EnumFormatter(names) {}
|
|
|
|
};
|
|
|
|
// Intended for offsetting from Color0/TexCoord0
|
|
|
|
constexpr ShaderAttrib operator+(ShaderAttrib attrib, int offset)
|
|
|
|
{
|
|
|
|
return static_cast<ShaderAttrib>(static_cast<u8>(attrib) + offset);
|
|
|
|
}
|
2013-01-14 23:59:08 +02:00
|
|
|
|
2013-06-23 20:28:36 +03:00
|
|
|
#pragma pack(1)
|
2013-03-31 21:55:57 +03:00
|
|
|
|
2012-08-07 02:02:04 +03:00
|
|
|
struct vertex_shader_uid_data
|
2008-12-26 12:43:18 +02:00
|
|
|
{
|
2013-07-02 15:32:52 +03:00
|
|
|
u32 NumValues() const { return sizeof(vertex_shader_uid_data); }
|
2013-08-12 13:04:56 +03:00
|
|
|
u32 components : 23;
|
2012-08-06 23:41:30 +03:00
|
|
|
u32 numTexGens : 4;
|
2013-08-12 13:04:56 +03:00
|
|
|
u32 numColorChans : 2;
|
2013-06-23 20:28:36 +03:00
|
|
|
u32 dualTexTrans_enabled : 1;
|
2022-07-23 08:47:04 +03:00
|
|
|
VSExpand vs_expand : 2;
|
|
|
|
u32 position_has_3_elems : 1;
|
2013-06-23 20:28:36 +03:00
|
|
|
|
2022-07-23 08:47:04 +03:00
|
|
|
u16 texcoord_elem_count; // 2 bits per texcoord input
|
|
|
|
u16 texMtxInfo_n_projection; // Stored separately to guarantee that the texMtxInfo struct is
|
|
|
|
// 8 bits wide
|
2016-01-16 11:56:49 +02:00
|
|
|
|
2016-06-24 11:43:46 +03:00
|
|
|
struct
|
|
|
|
{
|
2021-02-11 02:01:42 +02:00
|
|
|
TexInputForm inputform : 2;
|
|
|
|
TexGenType texgentype : 3;
|
|
|
|
SourceRow sourcerow : 5;
|
2013-06-28 18:43:53 +03:00
|
|
|
u32 embosssourceshift : 3;
|
2013-06-30 15:27:04 +03:00
|
|
|
u32 embosslightshift : 3;
|
2014-12-15 22:09:25 +02:00
|
|
|
} texMtxInfo[8];
|
2013-06-23 20:28:36 +03:00
|
|
|
|
2013-06-28 18:43:53 +03:00
|
|
|
struct
|
2016-06-24 11:43:46 +03:00
|
|
|
{
|
2013-06-28 18:43:53 +03:00
|
|
|
u32 index : 6;
|
|
|
|
u32 normalize : 1;
|
|
|
|
u32 pad : 1;
|
|
|
|
} postMtxInfo[8];
|
|
|
|
|
2013-04-01 00:29:33 +03:00
|
|
|
LightingUidData lighting;
|
2012-08-06 23:41:30 +03:00
|
|
|
};
|
2013-03-31 21:55:57 +03:00
|
|
|
#pragma pack()
|
2008-12-26 12:43:18 +02:00
|
|
|
|
2019-05-30 08:05:06 +03:00
|
|
|
using VertexShaderUid = ShaderUid<vertex_shader_uid_data>;
|
2008-12-26 12:43:18 +02:00
|
|
|
|
2016-01-16 13:34:06 +02:00
|
|
|
VertexShaderUid GetVertexShaderUid();
|
2017-07-20 10:10:02 +03:00
|
|
|
ShaderCode GenerateVertexShaderCode(APIType api_type, const ShaderHostConfig& host_config,
|
|
|
|
const vertex_shader_uid_data* uid_data);
|