2017-07-20 05:25:27 +00:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-07-20 05:25:27 +00:00
|
|
|
|
|
|
|
#include "VideoCommon/UberShaderVertex.h"
|
2019-12-22 18:40:40 +00:00
|
|
|
|
2023-06-17 05:08:07 +00:00
|
|
|
#include "Common/EnumUtils.h"
|
2022-07-23 05:47:04 +00:00
|
|
|
#include "VideoCommon/ConstantManager.h"
|
2017-07-20 05:25:27 +00:00
|
|
|
#include "VideoCommon/DriverDetails.h"
|
|
|
|
#include "VideoCommon/NativeVertexFormat.h"
|
|
|
|
#include "VideoCommon/UberShaderCommon.h"
|
|
|
|
#include "VideoCommon/VertexShaderGen.h"
|
2019-12-22 18:40:40 +00:00
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2017-07-20 05:25:27 +00:00
|
|
|
#include "VideoCommon/XFMemory.h"
|
|
|
|
|
|
|
|
namespace UberShader
|
|
|
|
{
|
|
|
|
VertexShaderUid GetVertexShaderUid()
|
|
|
|
{
|
|
|
|
VertexShaderUid out;
|
2019-05-30 05:05:06 +00:00
|
|
|
|
|
|
|
vertex_ubershader_uid_data* const uid_data = out.GetUidData();
|
2017-07-20 05:25:27 +00:00
|
|
|
uid_data->num_texgens = xfmem.numTexGen.numTexGens;
|
2019-05-30 05:05:06 +00:00
|
|
|
|
2017-07-20 05:25:27 +00:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2022-06-18 06:09:35 +00:00
|
|
|
static void GenVertexShaderTexGens(APIType api_type, const ShaderHostConfig& host_config,
|
|
|
|
u32 num_texgen, ShaderCode& out);
|
|
|
|
static void LoadVertexAttribute(ShaderCode& code, const ShaderHostConfig& host_config, u32 indent,
|
|
|
|
std::string_view name, std::string_view shader_type,
|
|
|
|
std::string_view stored_type, std::string_view offset_name = {});
|
2017-07-20 05:25:27 +00:00
|
|
|
|
2020-10-20 13:00:39 +00:00
|
|
|
ShaderCode GenVertexShader(APIType api_type, const ShaderHostConfig& host_config,
|
2017-07-20 05:25:27 +00:00
|
|
|
const vertex_ubershader_uid_data* uid_data)
|
|
|
|
{
|
|
|
|
const bool msaa = host_config.msaa;
|
|
|
|
const bool ssaa = host_config.ssaa;
|
|
|
|
const bool per_pixel_lighting = host_config.per_pixel_lighting;
|
|
|
|
const bool vertex_rounding = host_config.vertex_rounding;
|
2022-07-23 05:47:04 +00:00
|
|
|
const bool vertex_loader =
|
|
|
|
host_config.backend_dynamic_vertex_loader || host_config.backend_vs_point_line_expand;
|
2020-10-20 13:00:39 +00:00
|
|
|
const u32 num_texgen = uid_data->num_texgens;
|
2017-07-20 05:25:27 +00:00
|
|
|
ShaderCode out;
|
|
|
|
|
2022-06-13 08:59:32 +00:00
|
|
|
out.Write("// {}\n\n", *uid_data);
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("{}", s_lighting_struct);
|
2017-07-20 05:25:27 +00:00
|
|
|
|
|
|
|
// uniforms
|
2022-05-04 05:41:34 +00:00
|
|
|
out.Write("UBO_BINDING(std140, 2) uniform VSBlock {{\n");
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("{}", s_shader_uniforms);
|
|
|
|
out.Write("}};\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
|
2022-07-23 05:47:04 +00:00
|
|
|
if (vertex_loader)
|
|
|
|
{
|
2023-09-20 00:29:38 +00:00
|
|
|
out.Write("UBO_BINDING(std140, 4) uniform GSBlock {{\n");
|
2022-07-23 05:47:04 +00:00
|
|
|
out.Write("{}", s_geometry_shader_uniforms);
|
|
|
|
out.Write("}};\n");
|
|
|
|
}
|
|
|
|
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("struct VS_OUTPUT {{\n");
|
2022-05-04 05:41:34 +00:00
|
|
|
GenerateVSOutputMembers(out, api_type, num_texgen, host_config, "", ShaderStage::Vertex);
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("}};\n\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
|
2021-09-08 00:27:18 +00:00
|
|
|
WriteIsNanHeader(out, api_type);
|
2021-07-26 18:20:04 +00:00
|
|
|
WriteBitfieldExtractHeader(out, api_type, host_config);
|
2017-07-27 10:52:20 +00:00
|
|
|
WriteLightingFunction(out);
|
|
|
|
|
2022-07-23 05:47:04 +00:00
|
|
|
if (vertex_loader)
|
2022-06-18 06:09:35 +00:00
|
|
|
{
|
|
|
|
out.Write(R"(
|
|
|
|
SSBO_BINDING(1) readonly restrict buffer Vertices {{
|
|
|
|
uint vertex_buffer[];
|
|
|
|
}};
|
2022-06-20 07:55:49 +00:00
|
|
|
)");
|
|
|
|
if (api_type == APIType::D3D)
|
|
|
|
{
|
|
|
|
// Write a function to get an offset into vertex_buffer corresponding to this vertex.
|
|
|
|
// This must be done differently for D3D compared to OpenGL/Vulkan/Metal, as on OpenGL, etc.,
|
|
|
|
// gl_VertexID starts counting at the base vertex specified in glDrawElementsBaseVertex,
|
|
|
|
// while on D3D, SV_VertexID (which spirv-cross translates gl_VertexID into) starts counting
|
|
|
|
// at 0 regardless of the BaseVertexLocation value passed to DrawIndexed. In both cases,
|
|
|
|
// offset 0 of vertex_buffer corresponds to index 0 with basevertex set to 0, so we have to
|
|
|
|
// manually apply the basevertex offset for D3D
|
|
|
|
// D3D12 uses a root constant for this uniform, since it changes with every draw.
|
|
|
|
// D3D11 doesn't currently support dynamic vertex loader, and we'll have to figure something
|
|
|
|
// out for it if we want to support it in the future.
|
2023-09-20 00:29:38 +00:00
|
|
|
out.Write("UBO_BINDING(std140, 5) uniform DX_Constants {{\n"
|
2022-06-20 07:55:49 +00:00
|
|
|
" uint base_vertex;\n"
|
|
|
|
"}};\n\n"
|
2022-07-23 05:47:04 +00:00
|
|
|
"uint GetVertexBaseOffset(uint vertex_id) {{\n"
|
|
|
|
" return (vertex_id + base_vertex) * vertex_stride;\n"
|
2022-06-20 07:55:49 +00:00
|
|
|
"}}\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-07-23 05:47:04 +00:00
|
|
|
out.Write("uint GetVertexBaseOffset(uint vertex_id) {{\n"
|
|
|
|
" return vertex_id * vertex_stride;\n"
|
2022-06-20 07:55:49 +00:00
|
|
|
"}}\n");
|
|
|
|
}
|
2022-06-18 06:09:35 +00:00
|
|
|
|
2022-06-20 07:55:49 +00:00
|
|
|
out.Write(R"(
|
2022-06-18 06:09:35 +00:00
|
|
|
uint4 load_input_uint4_ubyte4(uint vtx_offset, uint attr_offset) {{
|
|
|
|
uint value = vertex_buffer[vtx_offset + attr_offset];
|
2023-10-25 04:18:01 +00:00
|
|
|
return uint4(value & 0xffu, (value >> 8) & 0xffu, (value >> 16) & 0xffu, value >> 24);
|
2022-06-18 06:09:35 +00:00
|
|
|
}}
|
|
|
|
|
|
|
|
float4 load_input_float4_ubyte4(uint vtx_offset, uint attr_offset) {{
|
|
|
|
return float4(load_input_uint4_ubyte4(vtx_offset, attr_offset)) / 255.0f;
|
|
|
|
}}
|
|
|
|
|
|
|
|
float3 load_input_float3_float3(uint vtx_offset, uint attr_offset) {{
|
|
|
|
uint offset = vtx_offset + attr_offset;
|
|
|
|
return float3(uintBitsToFloat(vertex_buffer[offset + 0]),
|
|
|
|
uintBitsToFloat(vertex_buffer[offset + 1]),
|
|
|
|
uintBitsToFloat(vertex_buffer[offset + 2]));
|
|
|
|
}}
|
|
|
|
|
|
|
|
float4 load_input_float4_rawpos(uint vtx_offset, uint attr_offset) {{
|
|
|
|
uint components = attr_offset >> 16;
|
|
|
|
uint offset = vtx_offset + (attr_offset & 0xffff);
|
|
|
|
if (components < 3)
|
|
|
|
return float4(uintBitsToFloat(vertex_buffer[offset + 0]),
|
|
|
|
uintBitsToFloat(vertex_buffer[offset + 1]),
|
|
|
|
0.0f, 1.0f);
|
|
|
|
else
|
|
|
|
return float4(uintBitsToFloat(vertex_buffer[offset + 0]),
|
|
|
|
uintBitsToFloat(vertex_buffer[offset + 1]),
|
|
|
|
uintBitsToFloat(vertex_buffer[offset + 2]),
|
|
|
|
1.0f);
|
|
|
|
}}
|
|
|
|
|
|
|
|
float3 load_input_float3_rawtex(uint vtx_offset, uint attr_offset) {{
|
|
|
|
uint components = attr_offset >> 16;
|
|
|
|
uint offset = vtx_offset + (attr_offset & 0xffff);
|
|
|
|
if (components < 2)
|
|
|
|
return float3(uintBitsToFloat(vertex_buffer[offset + 0]), 0.0f, 0.0f);
|
|
|
|
else if (components < 3)
|
|
|
|
return float3(uintBitsToFloat(vertex_buffer[offset + 0]),
|
|
|
|
uintBitsToFloat(vertex_buffer[offset + 1]),
|
|
|
|
0.0f);
|
|
|
|
else
|
|
|
|
return float3(uintBitsToFloat(vertex_buffer[offset + 0]),
|
|
|
|
uintBitsToFloat(vertex_buffer[offset + 1]),
|
|
|
|
uintBitsToFloat(vertex_buffer[offset + 2]));
|
|
|
|
}}
|
|
|
|
|
|
|
|
)");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-10-11 21:23:38 +00:00
|
|
|
out.Write("ATTRIBUTE_LOCATION({:s}) in float4 rawpos;\n", ShaderAttrib::Position);
|
|
|
|
out.Write("ATTRIBUTE_LOCATION({:s}) in uint4 posmtx;\n", ShaderAttrib::PositionMatrix);
|
|
|
|
out.Write("ATTRIBUTE_LOCATION({:s}) in float3 rawnormal;\n", ShaderAttrib::Normal);
|
|
|
|
out.Write("ATTRIBUTE_LOCATION({:s}) in float3 rawtangent;\n", ShaderAttrib::Tangent);
|
|
|
|
out.Write("ATTRIBUTE_LOCATION({:s}) in float3 rawbinormal;\n", ShaderAttrib::Binormal);
|
|
|
|
out.Write("ATTRIBUTE_LOCATION({:s}) in float4 rawcolor0;\n", ShaderAttrib::Color0);
|
|
|
|
out.Write("ATTRIBUTE_LOCATION({:s}) in float4 rawcolor1;\n", ShaderAttrib::Color1);
|
|
|
|
for (u32 i = 0; i < 8; ++i)
|
|
|
|
out.Write("ATTRIBUTE_LOCATION({:s}) in float3 rawtex{};\n", ShaderAttrib::TexCoord0 + i, i);
|
2022-06-18 06:09:35 +00:00
|
|
|
}
|
2022-05-04 05:41:34 +00:00
|
|
|
|
|
|
|
if (host_config.backend_geometry_shaders)
|
2017-07-20 05:25:27 +00:00
|
|
|
{
|
2022-05-04 05:41:34 +00:00
|
|
|
out.Write("VARYING_LOCATION(0) out VertexData {{\n");
|
|
|
|
GenerateVSOutputMembers(out, api_type, num_texgen, host_config,
|
|
|
|
GetInterpolationQualifier(msaa, ssaa, true, false),
|
|
|
|
ShaderStage::Vertex);
|
|
|
|
out.Write("}} vs;\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Let's set up attributes
|
|
|
|
u32 counter = 0;
|
|
|
|
out.Write("VARYING_LOCATION({}) {} out float4 colors_0;\n", counter++,
|
|
|
|
GetInterpolationQualifier(msaa, ssaa));
|
|
|
|
out.Write("VARYING_LOCATION({}) {} out float4 colors_1;\n", counter++,
|
|
|
|
GetInterpolationQualifier(msaa, ssaa));
|
|
|
|
for (u32 i = 0; i < num_texgen; ++i)
|
|
|
|
{
|
|
|
|
out.Write("VARYING_LOCATION({}) {} out float3 tex{};\n", counter++,
|
|
|
|
GetInterpolationQualifier(msaa, ssaa), i);
|
|
|
|
}
|
|
|
|
if (!host_config.fast_depth_calc)
|
2017-07-20 05:25:27 +00:00
|
|
|
{
|
2022-05-04 05:41:34 +00:00
|
|
|
out.Write("VARYING_LOCATION({}) {} out float4 clipPos;\n", counter++,
|
|
|
|
GetInterpolationQualifier(msaa, ssaa));
|
2017-07-20 05:25:27 +00:00
|
|
|
}
|
2022-05-04 05:41:34 +00:00
|
|
|
if (per_pixel_lighting)
|
2017-07-20 05:25:27 +00:00
|
|
|
{
|
2022-05-04 05:41:34 +00:00
|
|
|
out.Write("VARYING_LOCATION({}) {} out float3 Normal;\n", counter++,
|
2020-11-09 07:23:32 +00:00
|
|
|
GetInterpolationQualifier(msaa, ssaa));
|
2022-05-04 05:41:34 +00:00
|
|
|
out.Write("VARYING_LOCATION({}) {} out float3 WorldPos;\n", counter++,
|
2020-11-09 07:23:32 +00:00
|
|
|
GetInterpolationQualifier(msaa, ssaa));
|
2017-07-20 05:25:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-04 05:41:34 +00:00
|
|
|
out.Write("void main()\n{{\n");
|
|
|
|
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("VS_OUTPUT o;\n"
|
|
|
|
"\n");
|
2022-07-23 05:47:04 +00:00
|
|
|
if (host_config.backend_vs_point_line_expand)
|
2022-06-18 06:09:35 +00:00
|
|
|
{
|
2022-07-23 05:47:04 +00:00
|
|
|
out.Write("uint vertex_id = gl_VertexID;\n"
|
|
|
|
"if (vs_expand != 0u) {{\n"
|
|
|
|
" vertex_id = vertex_id >> 2;\n"
|
|
|
|
"}}\n"
|
|
|
|
"uint vertex_base_offset = GetVertexBaseOffset(vertex_id);\n");
|
|
|
|
}
|
|
|
|
else if (host_config.backend_dynamic_vertex_loader)
|
|
|
|
{
|
|
|
|
out.Write("uint vertex_base_offset = GetVertexBaseOffset(gl_VertexID);\n");
|
2022-06-18 06:09:35 +00:00
|
|
|
}
|
|
|
|
// rawpos is always needed
|
|
|
|
LoadVertexAttribute(out, host_config, 0, "rawpos", "float4", "rawpos");
|
2017-07-20 05:25:27 +00:00
|
|
|
// Transforms
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("// Position matrix\n"
|
|
|
|
"float4 P0;\n"
|
|
|
|
"float4 P1;\n"
|
|
|
|
"float4 P2;\n"
|
|
|
|
"\n"
|
|
|
|
"// Normal matrix\n"
|
|
|
|
"float3 N0;\n"
|
|
|
|
"float3 N1;\n"
|
|
|
|
"float3 N2;\n"
|
|
|
|
"\n"
|
2022-04-22 19:50:44 +00:00
|
|
|
"if ((components & {}u) != 0u) {{ // VB_HAS_POSMTXIDX\n",
|
2023-06-17 05:08:07 +00:00
|
|
|
Common::ToUnderlying(VB_HAS_POSMTXIDX));
|
2022-06-18 06:09:35 +00:00
|
|
|
LoadVertexAttribute(out, host_config, 2, "posmtx", "uint4", "ubyte4");
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" // Vertex format has a per-vertex matrix\n"
|
|
|
|
" int posidx = int(posmtx.r);\n"
|
|
|
|
" P0 = " I_TRANSFORMMATRICES "[posidx];\n"
|
|
|
|
" P1 = " I_TRANSFORMMATRICES "[posidx+1];\n"
|
|
|
|
" P2 = " I_TRANSFORMMATRICES "[posidx+2];\n"
|
|
|
|
"\n"
|
|
|
|
" int normidx = posidx >= 32 ? (posidx - 32) : posidx;\n"
|
|
|
|
" N0 = " I_NORMALMATRICES "[normidx].xyz;\n"
|
|
|
|
" N1 = " I_NORMALMATRICES "[normidx+1].xyz;\n"
|
|
|
|
" N2 = " I_NORMALMATRICES "[normidx+2].xyz;\n"
|
|
|
|
"}} else {{\n"
|
|
|
|
" // One shared matrix\n"
|
|
|
|
" P0 = " I_POSNORMALMATRIX "[0];\n"
|
|
|
|
" P1 = " I_POSNORMALMATRIX "[1];\n"
|
|
|
|
" P2 = " I_POSNORMALMATRIX "[2];\n"
|
|
|
|
" N0 = " I_POSNORMALMATRIX "[3].xyz;\n"
|
|
|
|
" N1 = " I_POSNORMALMATRIX "[4].xyz;\n"
|
|
|
|
" N2 = " I_POSNORMALMATRIX "[5].xyz;\n"
|
|
|
|
"}}\n"
|
|
|
|
"\n"
|
2021-12-28 21:01:57 +00:00
|
|
|
"// Multiply the position vector by the position matrix\n"
|
2020-11-09 07:23:32 +00:00
|
|
|
"float4 pos = float4(dot(P0, rawpos), dot(P1, rawpos), dot(P2, rawpos), 1.0);\n"
|
|
|
|
"o.pos = float4(dot(" I_PROJECTION "[0], pos), dot(" I_PROJECTION
|
|
|
|
"[1], pos), dot(" I_PROJECTION "[2], pos), dot(" I_PROJECTION "[3], pos));\n"
|
|
|
|
"\n"
|
Cache normals in addition to binormals and tangents
Fixes LIT (https://bugs.dolphin-emu.org/issues/13635). The text does not include normals, but has lighting enabled. With the previous default of (0, 0, 0), lighting was always black (as dot(X, (0, 0, 0)) is always 0). It seems like the normal from the map in the background (0, 0, 1) is re-used.
LIT also has the vertex color enabled while vertex color is not specified, the same as SMS's debug cubes; the default MissingColorValue GameINI value of solid white seems to work correctly in this case.
2024-09-25 06:46:45 +00:00
|
|
|
"float3 _rawnormal;\n"
|
|
|
|
"float3 _rawtangent;\n"
|
|
|
|
"float3 _rawbinormal;\n"
|
2022-06-18 06:09:35 +00:00
|
|
|
"if ((components & {}u) != 0u) // VB_HAS_NORMAL\n"
|
|
|
|
"{{\n",
|
2023-06-17 05:08:07 +00:00
|
|
|
Common::ToUnderlying(VB_HAS_NORMAL));
|
2022-06-18 06:09:35 +00:00
|
|
|
LoadVertexAttribute(out, host_config, 2, "rawnormal", "float3", "float3");
|
Cache normals in addition to binormals and tangents
Fixes LIT (https://bugs.dolphin-emu.org/issues/13635). The text does not include normals, but has lighting enabled. With the previous default of (0, 0, 0), lighting was always black (as dot(X, (0, 0, 0)) is always 0). It seems like the normal from the map in the background (0, 0, 1) is re-used.
LIT also has the vertex color enabled while vertex color is not specified, the same as SMS's debug cubes; the default MissingColorValue GameINI value of solid white seems to work correctly in this case.
2024-09-25 06:46:45 +00:00
|
|
|
out.Write(" _rawnormal = rawnormal;\n"
|
|
|
|
"}}\n"
|
|
|
|
"else\n"
|
|
|
|
"{{\n"
|
|
|
|
" _rawnormal = " I_CACHED_NORMAL ".xyz;\n"
|
2022-06-18 06:09:35 +00:00
|
|
|
"}}\n"
|
2020-11-09 07:23:32 +00:00
|
|
|
"\n"
|
2022-06-18 06:09:35 +00:00
|
|
|
"if ((components & {}u) != 0u) // VB_HAS_TANGENT\n"
|
|
|
|
"{{\n",
|
2023-06-17 05:08:07 +00:00
|
|
|
Common::ToUnderlying(VB_HAS_TANGENT));
|
2022-06-18 06:09:35 +00:00
|
|
|
LoadVertexAttribute(out, host_config, 2, "rawtangent", "float3", "float3");
|
Cache normals in addition to binormals and tangents
Fixes LIT (https://bugs.dolphin-emu.org/issues/13635). The text does not include normals, but has lighting enabled. With the previous default of (0, 0, 0), lighting was always black (as dot(X, (0, 0, 0)) is always 0). It seems like the normal from the map in the background (0, 0, 1) is re-used.
LIT also has the vertex color enabled while vertex color is not specified, the same as SMS's debug cubes; the default MissingColorValue GameINI value of solid white seems to work correctly in this case.
2024-09-25 06:46:45 +00:00
|
|
|
out.Write(" _rawtangent = rawtangent;\n"
|
2022-06-18 06:09:35 +00:00
|
|
|
"}}\n"
|
2022-04-14 05:03:34 +00:00
|
|
|
"else\n"
|
2022-06-18 06:09:35 +00:00
|
|
|
"{{\n"
|
Cache normals in addition to binormals and tangents
Fixes LIT (https://bugs.dolphin-emu.org/issues/13635). The text does not include normals, but has lighting enabled. With the previous default of (0, 0, 0), lighting was always black (as dot(X, (0, 0, 0)) is always 0). It seems like the normal from the map in the background (0, 0, 1) is re-used.
LIT also has the vertex color enabled while vertex color is not specified, the same as SMS's debug cubes; the default MissingColorValue GameINI value of solid white seems to work correctly in this case.
2024-09-25 06:46:45 +00:00
|
|
|
" _rawtangent = " I_CACHED_TANGENT ".xyz;\n"
|
2022-06-18 06:09:35 +00:00
|
|
|
"}}\n"
|
2022-04-22 19:50:44 +00:00
|
|
|
"\n"
|
2022-06-18 06:09:35 +00:00
|
|
|
"if ((components & {}u) != 0u) // VB_HAS_BINORMAL\n"
|
|
|
|
"{{\n",
|
2023-06-17 05:08:07 +00:00
|
|
|
Common::ToUnderlying(VB_HAS_BINORMAL));
|
2022-06-18 06:09:35 +00:00
|
|
|
LoadVertexAttribute(out, host_config, 2, "rawbinormal", "float3", "float3");
|
Cache normals in addition to binormals and tangents
Fixes LIT (https://bugs.dolphin-emu.org/issues/13635). The text does not include normals, but has lighting enabled. With the previous default of (0, 0, 0), lighting was always black (as dot(X, (0, 0, 0)) is always 0). It seems like the normal from the map in the background (0, 0, 1) is re-used.
LIT also has the vertex color enabled while vertex color is not specified, the same as SMS's debug cubes; the default MissingColorValue GameINI value of solid white seems to work correctly in this case.
2024-09-25 06:46:45 +00:00
|
|
|
out.Write(" _rawbinormal = rawbinormal;\n"
|
2022-06-18 06:09:35 +00:00
|
|
|
"}}\n"
|
2022-04-14 05:03:34 +00:00
|
|
|
"else\n"
|
2022-06-18 06:09:35 +00:00
|
|
|
"{{\n"
|
Cache normals in addition to binormals and tangents
Fixes LIT (https://bugs.dolphin-emu.org/issues/13635). The text does not include normals, but has lighting enabled. With the previous default of (0, 0, 0), lighting was always black (as dot(X, (0, 0, 0)) is always 0). It seems like the normal from the map in the background (0, 0, 1) is re-used.
LIT also has the vertex color enabled while vertex color is not specified, the same as SMS's debug cubes; the default MissingColorValue GameINI value of solid white seems to work correctly in this case.
2024-09-25 06:46:45 +00:00
|
|
|
" _rawbinormal = " I_CACHED_BINORMAL ".xyz;\n"
|
2022-06-18 06:09:35 +00:00
|
|
|
"}}\n"
|
Cache normals in addition to binormals and tangents
Fixes LIT (https://bugs.dolphin-emu.org/issues/13635). The text does not include normals, but has lighting enabled. With the previous default of (0, 0, 0), lighting was always black (as dot(X, (0, 0, 0)) is always 0). It seems like the normal from the map in the background (0, 0, 1) is re-used.
LIT also has the vertex color enabled while vertex color is not specified, the same as SMS's debug cubes; the default MissingColorValue GameINI value of solid white seems to work correctly in this case.
2024-09-25 06:46:45 +00:00
|
|
|
"\n"
|
|
|
|
"// The scale of the transform matrix is used to control the size of the emboss map\n"
|
|
|
|
"// effect by changing the scale of the transformed binormals (which only get used by\n"
|
|
|
|
"// emboss map texgens). By normalising the first transformed normal (which is used\n"
|
|
|
|
"// by lighting calculations and needs to be unit length), the same transform matrix\n"
|
|
|
|
"// can do double duty, scaling for emboss mapping, and not scaling for lighting.\n"
|
|
|
|
"float3 _normal = normalize(float3(dot(N0, _rawnormal), dot(N1, _rawnormal), dot(N2, "
|
|
|
|
"_rawnormal)));\n"
|
|
|
|
"float3 _tangent = float3(dot(N0, _rawtangent), dot(N1, _rawtangent), dot(N2, "
|
|
|
|
"_rawtangent));\n"
|
|
|
|
"float3 _binormal = float3(dot(N0, _rawbinormal), dot(N1, _rawbinormal), dot(N2, "
|
|
|
|
"_rawbinormal));\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
|
|
|
|
// Hardware Lighting
|
2017-01-29 12:38:48 +00:00
|
|
|
out.Write("// xfmem.numColorChans controls the number of color channels available to TEV,\n"
|
|
|
|
"// but we still need to generate all channels here, as it can be used in texgen.\n"
|
|
|
|
"// Cel-damage is an example of this.\n"
|
|
|
|
"float4 vertex_color_0, vertex_color_1;\n"
|
|
|
|
"\n");
|
|
|
|
out.Write("// To use color 1, the vertex descriptor must have color 0 and 1.\n"
|
|
|
|
"// If color 1 is present but not color 0, it is used for lighting channel 0.\n"
|
2020-11-23 10:42:41 +00:00
|
|
|
"bool use_color_1 = ((components & {0}u) == {0}u); // VB_HAS_COL0 | VB_HAS_COL1\n",
|
2022-10-11 21:23:38 +00:00
|
|
|
static_cast<u32>(VB_HAS_COL0 | VB_HAS_COL1));
|
2017-01-29 12:38:48 +00:00
|
|
|
|
2022-06-18 06:09:35 +00:00
|
|
|
out.Write("if ((components & {0}u) == {0}u) // VB_HAS_COL0 | VB_HAS_COL1\n"
|
|
|
|
"{{\n",
|
2022-10-11 21:23:38 +00:00
|
|
|
static_cast<u32>(VB_HAS_COL0 | VB_HAS_COL1));
|
2022-06-18 06:09:35 +00:00
|
|
|
LoadVertexAttribute(out, host_config, 2, "rawcolor0", "float4", "ubyte4");
|
|
|
|
LoadVertexAttribute(out, host_config, 2, "rawcolor1", "float4", "ubyte4");
|
|
|
|
out.Write(" vertex_color_0 = rawcolor0;\n"
|
|
|
|
" vertex_color_1 = rawcolor1;\n"
|
|
|
|
"}}\n"
|
|
|
|
"else if ((components & {}u) != 0u) // VB_HAS_COL0\n"
|
|
|
|
"{{\n",
|
2023-06-17 05:08:07 +00:00
|
|
|
Common::ToUnderlying(VB_HAS_COL0));
|
2022-06-18 06:09:35 +00:00
|
|
|
LoadVertexAttribute(out, host_config, 2, "rawcolor0", "float4", "ubyte4");
|
|
|
|
out.Write(" vertex_color_0 = rawcolor0;\n"
|
|
|
|
" vertex_color_1 = rawcolor0;\n"
|
|
|
|
"}}\n"
|
|
|
|
"else if ((components & {}u) != 0u) // VB_HAS_COL1\n"
|
|
|
|
"{{\n",
|
2023-06-17 05:08:07 +00:00
|
|
|
Common::ToUnderlying(VB_HAS_COL1));
|
2022-06-18 06:09:35 +00:00
|
|
|
LoadVertexAttribute(out, host_config, 2, "rawcolor1", "float4", "ubyte4");
|
|
|
|
out.Write(" vertex_color_0 = rawcolor1;\n"
|
|
|
|
" vertex_color_1 = rawcolor1;\n"
|
2017-01-29 12:38:48 +00:00
|
|
|
"}}\n"
|
2022-06-18 06:09:35 +00:00
|
|
|
"else\n"
|
|
|
|
"{{\n"
|
|
|
|
" vertex_color_0 = missing_color_value;\n"
|
|
|
|
" vertex_color_1 = missing_color_value;\n"
|
|
|
|
"}}\n");
|
2017-01-29 12:38:48 +00:00
|
|
|
|
2022-04-22 19:50:44 +00:00
|
|
|
WriteVertexLighting(out, api_type, "pos.xyz", "_normal", "vertex_color_0", "vertex_color_1",
|
2017-01-29 12:38:48 +00:00
|
|
|
"o.colors_0", "o.colors_1");
|
2017-07-20 05:25:27 +00:00
|
|
|
|
|
|
|
// Texture Coordinates
|
2020-10-20 13:00:39 +00:00
|
|
|
if (num_texgen > 0)
|
2022-06-18 06:09:35 +00:00
|
|
|
GenVertexShaderTexGens(api_type, host_config, num_texgen, out);
|
2020-10-20 13:00:39 +00:00
|
|
|
|
2022-07-23 05:47:04 +00:00
|
|
|
if (host_config.backend_vs_point_line_expand)
|
|
|
|
{
|
2023-06-17 05:08:07 +00:00
|
|
|
out.Write("if (vs_expand == {}u) {{ // Line\n", Common::ToUnderlying(VSExpand::Line));
|
2022-07-23 05:47:04 +00:00
|
|
|
out.Write(" bool is_bottom = (gl_VertexID & 2) != 0;\n"
|
|
|
|
" bool is_right = (gl_VertexID & 1) != 0;\n"
|
|
|
|
" uint other_base_offset = vertex_base_offset;\n"
|
|
|
|
" if (is_bottom) {{\n"
|
|
|
|
" other_base_offset -= vertex_stride;\n"
|
|
|
|
" }} else {{\n"
|
|
|
|
" other_base_offset += vertex_stride;\n"
|
|
|
|
" }}\n"
|
|
|
|
" float4 other_rawpos = load_input_float4_rawpos(other_base_offset, "
|
|
|
|
"vertex_offset_rawpos);\n"
|
|
|
|
" float4 other_p0 = P0;\n"
|
|
|
|
" float4 other_p1 = P1;\n"
|
|
|
|
" float4 other_p2 = P2;\n"
|
|
|
|
" if ((components & {}u) != 0u) {{ // VB_HAS_POSMTXIDX\n",
|
2023-06-17 05:08:07 +00:00
|
|
|
Common::ToUnderlying(VB_HAS_POSMTXIDX));
|
2022-10-05 03:54:30 +00:00
|
|
|
out.Write(" uint other_posidx = load_input_uint4_ubyte4(other_base_offset, "
|
|
|
|
"vertex_offset_posmtx).r;\n"
|
2022-07-23 05:47:04 +00:00
|
|
|
" other_p0 = " I_TRANSFORMMATRICES "[other_posidx];\n"
|
|
|
|
" other_p1 = " I_TRANSFORMMATRICES "[other_posidx+1];\n"
|
|
|
|
" other_p2 = " I_TRANSFORMMATRICES "[other_posidx+2];\n"
|
|
|
|
" }}\n"
|
|
|
|
" float4 other_pos = float4(dot(other_p0, other_rawpos), "
|
2022-10-05 03:54:30 +00:00
|
|
|
"dot(other_p1, other_rawpos), dot(other_p2, other_rawpos), 1.0);\n");
|
|
|
|
GenerateVSLineExpansion(out, " ", num_texgen);
|
2023-06-17 05:08:07 +00:00
|
|
|
out.Write("}} else if (vs_expand == {}u) {{ // Point\n", Common::ToUnderlying(VSExpand::Point));
|
2022-07-23 05:47:04 +00:00
|
|
|
out.Write(" bool is_bottom = (gl_VertexID & 2) != 0;\n"
|
2022-10-05 03:54:30 +00:00
|
|
|
" bool is_right = (gl_VertexID & 1) != 0;\n");
|
|
|
|
GenerateVSPointExpansion(out, " ", num_texgen);
|
2022-07-23 05:47:04 +00:00
|
|
|
out.Write("}}\n");
|
|
|
|
}
|
|
|
|
|
2021-08-09 21:17:26 +00:00
|
|
|
if (per_pixel_lighting)
|
|
|
|
{
|
2021-10-14 03:43:32 +00:00
|
|
|
out.Write("// When per-pixel lighting is enabled, the vertex colors are passed through\n"
|
|
|
|
"// unmodified so we can evaluate the lighting in the pixel shader.\n"
|
|
|
|
"// Lighting is also still computed in the vertex shader since it can be used to\n"
|
|
|
|
"// generate texture coordinates. We generated them above, so now the colors can\n"
|
|
|
|
"// be reverted to their previous stage.\n"
|
|
|
|
"o.colors_0 = vertex_color_0;\n"
|
|
|
|
"o.colors_1 = vertex_color_1;\n"
|
|
|
|
"// Note that the numColorChans logic should be (but currently isn't)\n"
|
|
|
|
"// performed in the pixel shader.\n");
|
2021-08-09 21:17:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-10-14 03:43:32 +00:00
|
|
|
out.Write("// The number of colors available to TEV is determined by numColorChans.\n"
|
|
|
|
"// We have to provide the fields to match the interface, so set to zero\n"
|
|
|
|
"// if it's not enabled.\n"
|
|
|
|
"if (xfmem_numColorChans == 0u)\n"
|
|
|
|
" o.colors_0 = float4(0.0, 0.0, 0.0, 0.0);\n"
|
|
|
|
"if (xfmem_numColorChans <= 1u)\n"
|
|
|
|
" o.colors_1 = float4(0.0, 0.0, 0.0, 0.0);\n");
|
2021-08-09 21:17:26 +00:00
|
|
|
}
|
|
|
|
|
2019-01-23 08:11:17 +00:00
|
|
|
if (!host_config.fast_depth_calc)
|
|
|
|
{
|
|
|
|
// clipPos/w needs to be done in pixel shader, not here
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("o.clipPos = o.pos;\n");
|
2019-01-23 08:11:17 +00:00
|
|
|
}
|
2017-07-20 05:25:27 +00:00
|
|
|
|
2017-07-27 10:52:20 +00:00
|
|
|
if (per_pixel_lighting)
|
|
|
|
{
|
2022-04-22 19:50:44 +00:00
|
|
|
out.Write("o.Normal = _normal;\n"
|
2021-08-09 21:17:26 +00:00
|
|
|
"o.WorldPos = pos.xyz;\n");
|
2017-01-29 12:38:48 +00:00
|
|
|
}
|
2017-07-27 10:52:20 +00:00
|
|
|
|
2017-07-20 05:25:27 +00:00
|
|
|
// If we can disable the incorrect depth clipping planes using depth clamping, then we can do
|
|
|
|
// our own depth clipping and calculate the depth range before the perspective divide if
|
|
|
|
// necessary.
|
|
|
|
if (host_config.backend_depth_clamp)
|
|
|
|
{
|
|
|
|
// Since we're adjusting z for the depth range before the perspective divide, we have to do our
|
|
|
|
// own clipping. We want to clip so that -w <= z <= 0, which matches the console -1..0 range.
|
|
|
|
// We adjust our depth value for clipping purposes to match the perspective projection in the
|
|
|
|
// software backend, which is a hack to fix Sonic Adventure and Unleashed games.
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("float clipDepth = o.pos.z * (1.0 - 1e-7);\n"
|
|
|
|
"float clipDist0 = clipDepth + o.pos.w;\n" // Near: z < -w
|
|
|
|
"float clipDist1 = -clipDepth;\n"); // Far: z > 0
|
2019-01-23 08:11:17 +00:00
|
|
|
if (host_config.backend_geometry_shaders)
|
|
|
|
{
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("o.clipDist0 = clipDist0;\n"
|
|
|
|
"o.clipDist1 = clipDist1;\n");
|
2019-01-23 08:11:17 +00:00
|
|
|
}
|
2017-07-20 05:25:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write the true depth value. If the game uses depth textures, then the pixel shader will
|
|
|
|
// override it with the correct values if not then early z culling will improve speed.
|
|
|
|
// There are two different ways to do this, when the depth range is oversized, we process
|
|
|
|
// the depth range in the vertex shader, if not we let the host driver handle it.
|
|
|
|
//
|
|
|
|
// Adjust z for the depth range. We're using an equation which incorperates a depth inversion,
|
|
|
|
// so we can map the console -1..0 range to the 0..1 range used in the depth buffer.
|
|
|
|
// We have to handle the depth range in the vertex shader instead of after the perspective
|
|
|
|
// divide, because some games will use a depth range larger than what is allowed by the
|
|
|
|
// graphics API. These large depth ranges will still be clipped to the 0..1 range, so these
|
|
|
|
// games effectively add a depth bias to the values written to the depth buffer.
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("o.pos.z = o.pos.w * " I_PIXELCENTERCORRECTION ".w - "
|
|
|
|
"o.pos.z * " I_PIXELCENTERCORRECTION ".z;\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
|
|
|
|
if (!host_config.backend_clip_control)
|
|
|
|
{
|
|
|
|
// If the graphics API doesn't support a depth range of 0..1, then we need to map z to
|
|
|
|
// the -1..1 range. Unfortunately we have to use a substraction, which is a lossy floating-point
|
|
|
|
// operation that can introduce a round-trip error.
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("o.pos.z = o.pos.z * 2.0 - o.pos.w;\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Correct for negative viewports by mirroring all vertices. We need to negate the height here,
|
|
|
|
// since the viewport height is already negated by the render backend.
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("o.pos.xy *= sign(" I_PIXELCENTERCORRECTION ".xy * float2(1.0, -1.0));\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
|
|
|
|
// The console GPU places the pixel center at 7/12 in screen space unless
|
|
|
|
// antialiasing is enabled, while D3D and OpenGL place it at 0.5. This results
|
|
|
|
// in some primitives being placed one pixel too far to the bottom-right,
|
|
|
|
// which in turn can be critical if it happens for clear quads.
|
|
|
|
// Hence, we compensate for this pixel center difference so that primitives
|
|
|
|
// get rasterized correctly.
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("o.pos.xy = o.pos.xy - o.pos.w * " I_PIXELCENTERCORRECTION ".xy;\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
|
|
|
|
if (vertex_rounding)
|
|
|
|
{
|
|
|
|
// By now our position is in clip space. However, higher resolutions than the Wii outputs
|
|
|
|
// cause an additional pixel offset. Due to a higher pixel density we need to correct this
|
|
|
|
// by converting our clip-space position into the Wii's screen-space.
|
|
|
|
// Acquire the right pixel and then convert it back.
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("if (o.pos.w == 1.0f)\n"
|
|
|
|
"{{\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("\tfloat ss_pixel_x = ((o.pos.x + 1.0f) * (" I_VIEWPORT_SIZE ".x * 0.5f));\n"
|
|
|
|
"\tfloat ss_pixel_y = ((o.pos.y + 1.0f) * (" I_VIEWPORT_SIZE ".y * 0.5f));\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("\tss_pixel_x = round(ss_pixel_x);\n"
|
|
|
|
"\tss_pixel_y = round(ss_pixel_y);\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("\to.pos.x = ((ss_pixel_x / (" I_VIEWPORT_SIZE ".x * 0.5f)) - 1.0f);\n"
|
|
|
|
"\to.pos.y = ((ss_pixel_y / (" I_VIEWPORT_SIZE ".y * 0.5f)) - 1.0f);\n"
|
|
|
|
"}}\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
}
|
|
|
|
|
2022-05-04 05:41:34 +00:00
|
|
|
if (host_config.backend_geometry_shaders)
|
2017-07-20 05:25:27 +00:00
|
|
|
{
|
2022-05-04 05:41:34 +00:00
|
|
|
AssignVSOutputMembers(out, "vs", "o", num_texgen, host_config);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// TODO: Pass interface blocks between shader stages even if geometry shaders
|
|
|
|
// are not supported, however that will require at least OpenGL 3.2 support.
|
|
|
|
for (u32 i = 0; i < num_texgen; ++i)
|
|
|
|
out.Write("tex{}.xyz = o.tex{};\n", i, i);
|
|
|
|
if (!host_config.fast_depth_calc)
|
|
|
|
out.Write("clipPos = o.clipPos;\n");
|
|
|
|
if (per_pixel_lighting)
|
2017-07-20 05:25:27 +00:00
|
|
|
{
|
2022-05-04 05:41:34 +00:00
|
|
|
out.Write("Normal = o.Normal;\n"
|
|
|
|
"WorldPos = o.WorldPos;\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
}
|
2022-05-04 05:41:34 +00:00
|
|
|
out.Write("colors_0 = o.colors_0;\n"
|
|
|
|
"colors_1 = o.colors_1;\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
}
|
2022-05-04 05:41:34 +00:00
|
|
|
|
|
|
|
if (host_config.backend_depth_clamp)
|
2017-07-20 05:25:27 +00:00
|
|
|
{
|
2022-05-04 05:41:34 +00:00
|
|
|
out.Write("gl_ClipDistance[0] = clipDist0;\n"
|
|
|
|
"gl_ClipDistance[1] = clipDist1;\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
}
|
2022-05-04 05:41:34 +00:00
|
|
|
|
|
|
|
// Vulkan NDC space has Y pointing down (right-handed NDC space).
|
|
|
|
if (api_type == APIType::Vulkan)
|
|
|
|
out.Write("gl_Position = float4(o.pos.x, -o.pos.y, o.pos.z, o.pos.w);\n");
|
|
|
|
else
|
|
|
|
out.Write("gl_Position = o.pos;\n");
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("}}\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2022-06-18 06:09:35 +00:00
|
|
|
static void GenVertexShaderTexGens(APIType api_type, const ShaderHostConfig& host_config,
|
|
|
|
u32 num_texgen, ShaderCode& out)
|
2017-07-20 05:25:27 +00:00
|
|
|
{
|
|
|
|
// The HLSL compiler complains that the output texture coordinates are uninitialized when trying
|
|
|
|
// to dynamically index them.
|
2020-10-20 13:00:39 +00:00
|
|
|
for (u32 i = 0; i < num_texgen; i++)
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("o.tex{} = float3(0.0, 0.0, 0.0);\n", i);
|
2017-07-20 05:25:27 +00:00
|
|
|
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("// Texture coordinate generation\n");
|
2020-10-20 13:00:39 +00:00
|
|
|
if (num_texgen == 1)
|
|
|
|
{
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write("{{ const uint texgen = 0u;\n");
|
2020-10-20 13:00:39 +00:00
|
|
|
}
|
2017-07-20 05:25:27 +00:00
|
|
|
else
|
2020-10-20 13:00:39 +00:00
|
|
|
{
|
2022-05-04 05:41:34 +00:00
|
|
|
out.Write("for (uint texgen = 0u; texgen < {}u; texgen++) {{\n", num_texgen);
|
2020-10-20 13:00:39 +00:00
|
|
|
}
|
|
|
|
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" // Texcoord transforms\n");
|
|
|
|
out.Write(" float4 coord = float4(0.0, 0.0, 1.0, 1.0);\n"
|
|
|
|
" uint texMtxInfo = xfmem_texMtxInfo(texgen);\n");
|
2021-04-11 02:34:20 +00:00
|
|
|
out.Write(" switch ({}) {{\n", BitfieldExtract<&TexMtxInfo::sourcerow>("texMtxInfo"));
|
2021-02-11 00:01:42 +00:00
|
|
|
out.Write(" case {:s}:\n", SourceRow::Geom);
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" coord.xyz = rawpos.xyz;\n");
|
|
|
|
out.Write(" break;\n\n");
|
2021-02-11 00:01:42 +00:00
|
|
|
out.Write(" case {:s}:\n", SourceRow::Normal);
|
2022-06-18 06:09:35 +00:00
|
|
|
out.Write(" if ((components & {}u) != 0u) // VB_HAS_NORMAL\n"
|
|
|
|
" {{\n",
|
2023-06-17 05:08:07 +00:00
|
|
|
Common::ToUnderlying(VB_HAS_NORMAL));
|
2022-06-18 06:09:35 +00:00
|
|
|
LoadVertexAttribute(out, host_config, 6, "rawnormal", "float3", "float3");
|
|
|
|
out.Write(" coord.xyz = rawnormal.xyz;\n"
|
|
|
|
" }}\n"
|
|
|
|
" break;\n\n");
|
2021-02-11 00:01:42 +00:00
|
|
|
out.Write(" case {:s}:\n", SourceRow::BinormalT);
|
2022-06-18 06:09:35 +00:00
|
|
|
out.Write(" if ((components & {}u) != 0u) // VB_HAS_TANGENT\n"
|
|
|
|
" {{\n",
|
2023-06-17 05:08:07 +00:00
|
|
|
Common::ToUnderlying(VB_HAS_TANGENT));
|
2022-06-18 06:09:35 +00:00
|
|
|
LoadVertexAttribute(out, host_config, 6, "rawtangent", "float3", "float3");
|
|
|
|
out.Write(" coord.xyz = rawtangent.xyz;\n"
|
|
|
|
" }}\n"
|
|
|
|
" break;\n\n");
|
2021-02-11 00:01:42 +00:00
|
|
|
out.Write(" case {:s}:\n", SourceRow::BinormalB);
|
2022-06-18 06:09:35 +00:00
|
|
|
out.Write(" if ((components & {}u) != 0u) // VB_HAS_BINORMAL\n"
|
|
|
|
" {{\n",
|
2023-06-17 05:08:07 +00:00
|
|
|
Common::ToUnderlying(VB_HAS_BINORMAL));
|
2022-06-18 06:09:35 +00:00
|
|
|
LoadVertexAttribute(out, host_config, 6, "rawbinormal", "float3", "float3");
|
|
|
|
out.Write(" coord.xyz = rawbinormal.xyz;\n"
|
|
|
|
" }}\n"
|
|
|
|
" break;\n\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
for (u32 i = 0; i < 8; i++)
|
|
|
|
{
|
2023-06-17 05:08:07 +00:00
|
|
|
out.Write(" case {:s}:\n", static_cast<SourceRow>(Common::ToUnderlying(SourceRow::Tex0) + i));
|
2022-06-18 06:09:35 +00:00
|
|
|
out.Write(" if ((components & {}u) != 0u) // VB_HAS_UV{}\n"
|
|
|
|
" {{\n",
|
|
|
|
VB_HAS_UV0 << i, i);
|
|
|
|
LoadVertexAttribute(out, host_config, 6, fmt::format("rawtex{}", i), "float3", "rawtex",
|
|
|
|
fmt::format("rawtex[{}][{}]", i / 4, i % 4));
|
|
|
|
out.Write(" coord = float4(rawtex{}.x, rawtex{}.y, 1.0f, 1.0f);\n"
|
|
|
|
" }}\n",
|
|
|
|
i, i);
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" break;\n\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
}
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" }}\n"
|
|
|
|
"\n");
|
|
|
|
|
|
|
|
out.Write(" // Input form of AB11 sets z element to 1.0\n");
|
2021-02-11 00:01:42 +00:00
|
|
|
out.Write(" if ({} == {:s}) // inputform == AB11\n",
|
2021-04-11 02:34:20 +00:00
|
|
|
BitfieldExtract<&TexMtxInfo::inputform>("texMtxInfo"), TexInputForm::AB11);
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" coord.z = 1.0f;\n"
|
|
|
|
"\n");
|
|
|
|
|
2021-07-21 02:00:29 +00:00
|
|
|
// Convert NaNs to 1 - needed to fix eyelids in Shadow the Hedgehog during cutscenes
|
|
|
|
// See https://bugs.dolphin-emu.org/issues/11458
|
|
|
|
out.Write(" // Convert NaN to 1\n");
|
2021-09-08 00:27:18 +00:00
|
|
|
out.Write(" if (dolphin_isnan(coord.x)) coord.x = 1.0;\n");
|
|
|
|
out.Write(" if (dolphin_isnan(coord.y)) coord.y = 1.0;\n");
|
|
|
|
out.Write(" if (dolphin_isnan(coord.z)) coord.z = 1.0;\n");
|
2021-07-21 02:00:29 +00:00
|
|
|
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" // first transformation\n");
|
2021-04-11 02:34:20 +00:00
|
|
|
out.Write(" uint texgentype = {};\n", BitfieldExtract<&TexMtxInfo::texgentype>("texMtxInfo"));
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" float3 output_tex;\n"
|
|
|
|
" switch (texgentype)\n"
|
|
|
|
" {{\n");
|
2021-02-11 00:01:42 +00:00
|
|
|
out.Write(" case {:s}:\n", TexGenType::EmbossMap);
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" {{\n");
|
|
|
|
out.Write(" uint light = {};\n",
|
2021-04-11 02:34:20 +00:00
|
|
|
BitfieldExtract<&TexMtxInfo::embosslightshift>("texMtxInfo"));
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" uint source = {};\n",
|
2021-04-11 02:34:20 +00:00
|
|
|
BitfieldExtract<&TexMtxInfo::embosssourceshift>("texMtxInfo"));
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" switch (source) {{\n");
|
2020-10-20 13:00:39 +00:00
|
|
|
for (u32 i = 0; i < num_texgen; i++)
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" case {}u: output_tex.xyz = o.tex{}; break;\n", i, i);
|
|
|
|
out.Write(" default: output_tex.xyz = float3(0.0, 0.0, 0.0); break;\n"
|
|
|
|
" }}\n"
|
2022-04-14 05:03:34 +00:00
|
|
|
" float3 ldir = normalize(" I_LIGHTS "[light].pos.xyz - pos.xyz);\n"
|
|
|
|
" output_tex.xyz += float3(dot(ldir, _tangent), dot(ldir, _binormal), 0.0);\n"
|
2020-11-09 07:23:32 +00:00
|
|
|
" }}\n"
|
|
|
|
" break;\n\n");
|
2021-02-11 00:01:42 +00:00
|
|
|
out.Write(" case {:s}:\n", TexGenType::Color0);
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" output_tex.xyz = float3(o.colors_0.x, o.colors_0.y, 1.0);\n"
|
|
|
|
" break;\n\n");
|
2021-02-11 00:01:42 +00:00
|
|
|
out.Write(" case {:s}:\n", TexGenType::Color1);
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" output_tex.xyz = float3(o.colors_1.x, o.colors_1.y, 1.0);\n"
|
|
|
|
" break;\n\n");
|
2021-02-11 00:01:42 +00:00
|
|
|
out.Write(" case {:s}:\n", TexGenType::Regular);
|
|
|
|
out.Write(" default:\n"
|
2020-11-09 07:23:32 +00:00
|
|
|
" {{\n");
|
|
|
|
out.Write(" if ((components & ({}u /* VB_HAS_TEXMTXIDX0 */ << texgen)) != 0u) {{\n",
|
2023-06-17 05:08:07 +00:00
|
|
|
Common::ToUnderlying(VB_HAS_TEXMTXIDX0));
|
2022-07-23 05:47:04 +00:00
|
|
|
if (host_config.backend_dynamic_vertex_loader || host_config.backend_vs_point_line_expand)
|
2022-06-18 06:09:35 +00:00
|
|
|
{
|
|
|
|
out.Write(" int tmp = int(load_input_float3_rawtex(vertex_base_offset, "
|
|
|
|
"vertex_offset_rawtex[texgen / 4][texgen % 4]).z);\n"
|
|
|
|
"\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out.Write(
|
|
|
|
" // This is messy, due to dynamic indexing of the input texture coordinates.\n"
|
|
|
|
" // Hopefully the compiler will unroll this whole loop anyway and the switch.\n"
|
|
|
|
" int tmp = 0;\n"
|
|
|
|
" switch (texgen) {{\n");
|
|
|
|
for (u32 i = 0; i < num_texgen; i++)
|
|
|
|
out.Write(" case {}u: tmp = int(rawtex{}.z); break;\n", i, i);
|
|
|
|
out.Write(" }}\n"
|
|
|
|
"\n");
|
|
|
|
}
|
2021-04-11 02:34:20 +00:00
|
|
|
out.Write(" if ({} == {:s}) {{\n", BitfieldExtract<&TexMtxInfo::projection>("texMtxInfo"),
|
2021-02-11 00:01:42 +00:00
|
|
|
TexSize::STQ);
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" output_tex.xyz = float3(dot(coord, " I_TRANSFORMMATRICES "[tmp]),\n"
|
|
|
|
" dot(coord, " I_TRANSFORMMATRICES "[tmp + 1]),\n"
|
|
|
|
" dot(coord, " I_TRANSFORMMATRICES "[tmp + 2]));\n"
|
|
|
|
" }} else {{\n"
|
|
|
|
" output_tex.xyz = float3(dot(coord, " I_TRANSFORMMATRICES "[tmp]),\n"
|
|
|
|
" dot(coord, " I_TRANSFORMMATRICES "[tmp + 1]),\n"
|
|
|
|
" 1.0);\n"
|
|
|
|
" }}\n"
|
|
|
|
" }} else {{\n");
|
2021-04-11 02:34:20 +00:00
|
|
|
out.Write(" if ({} == {:s}) {{\n", BitfieldExtract<&TexMtxInfo::projection>("texMtxInfo"),
|
2021-02-11 00:01:42 +00:00
|
|
|
TexSize::STQ);
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" output_tex.xyz = float3(dot(coord, " I_TEXMATRICES "[3u * texgen]),\n"
|
|
|
|
" dot(coord, " I_TEXMATRICES "[3u * texgen + 1u]),\n"
|
|
|
|
" dot(coord, " I_TEXMATRICES "[3u * texgen + 2u]));\n"
|
|
|
|
" }} else {{\n"
|
|
|
|
" output_tex.xyz = float3(dot(coord, " I_TEXMATRICES "[3u * texgen]),\n"
|
|
|
|
" dot(coord, " I_TEXMATRICES "[3u * texgen + 1u]),\n"
|
|
|
|
" 1.0);\n"
|
|
|
|
" }}\n"
|
|
|
|
" }}\n"
|
|
|
|
" }}\n"
|
|
|
|
" break;\n\n"
|
|
|
|
" }}\n"
|
|
|
|
"\n");
|
|
|
|
|
|
|
|
out.Write(" if (xfmem_dualTexInfo != 0u) {{\n");
|
|
|
|
out.Write(" uint postMtxInfo = xfmem_postMtxInfo(texgen);");
|
2021-04-11 02:34:20 +00:00
|
|
|
out.Write(" uint base_index = {};\n", BitfieldExtract<&PostMtxInfo::index>("postMtxInfo"));
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" float4 P0 = " I_POSTTRANSFORMMATRICES "[base_index & 0x3fu];\n"
|
|
|
|
" float4 P1 = " I_POSTTRANSFORMMATRICES "[(base_index + 1u) & 0x3fu];\n"
|
|
|
|
" float4 P2 = " I_POSTTRANSFORMMATRICES "[(base_index + 2u) & 0x3fu];\n"
|
|
|
|
"\n");
|
2021-04-11 02:34:20 +00:00
|
|
|
out.Write(" if ({} != 0u)\n", BitfieldExtract<&PostMtxInfo::normalize>("postMtxInfo"));
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" output_tex.xyz = normalize(output_tex.xyz);\n"
|
|
|
|
"\n"
|
|
|
|
" // multiply by postmatrix\n"
|
|
|
|
" output_tex.xyz = float3(dot(P0.xyz, output_tex.xyz) + P0.w,\n"
|
|
|
|
" dot(P1.xyz, output_tex.xyz) + P1.w,\n"
|
|
|
|
" dot(P2.xyz, output_tex.xyz) + P2.w);\n"
|
|
|
|
" }}\n\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
|
|
|
|
// When q is 0, the GameCube appears to have a special case
|
|
|
|
// This can be seen in devkitPro's neheGX Lesson08 example for Wii
|
|
|
|
// Makes differences in Rogue Squadron 3 (Hoth sky) and The Last Story (shadow culling)
|
2021-02-11 00:01:42 +00:00
|
|
|
out.Write(" if (texgentype == {:s} && output_tex.z == 0.0)\n", TexGenType::Regular);
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(
|
2017-07-20 05:25:27 +00:00
|
|
|
" output_tex.xy = clamp(output_tex.xy / 2.0f, float2(-1.0f,-1.0f), float2(1.0f,1.0f));\n"
|
|
|
|
"\n");
|
|
|
|
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" // Hopefully GPUs that can support dynamic indexing will optimize this.\n");
|
|
|
|
out.Write(" switch (texgen) {{\n");
|
2020-10-20 13:00:39 +00:00
|
|
|
for (u32 i = 0; i < num_texgen; i++)
|
2020-11-09 07:23:32 +00:00
|
|
|
out.Write(" case {}u: o.tex{} = output_tex; break;\n", i, i);
|
|
|
|
out.Write(" }}\n"
|
|
|
|
"}}\n");
|
2017-07-20 05:25:27 +00:00
|
|
|
}
|
|
|
|
|
2022-06-18 06:09:35 +00:00
|
|
|
static void LoadVertexAttribute(ShaderCode& code, const ShaderHostConfig& host_config, u32 indent,
|
|
|
|
std::string_view name, std::string_view shader_type,
|
|
|
|
std::string_view stored_type, std::string_view offset_name)
|
|
|
|
{
|
2022-07-23 05:47:04 +00:00
|
|
|
if (host_config.backend_dynamic_vertex_loader || host_config.backend_vs_point_line_expand)
|
2022-06-18 06:09:35 +00:00
|
|
|
{
|
|
|
|
code.Write("{:{}}{} {} = load_input_{}_{}(vertex_base_offset, vertex_offset_{});\n", "", indent,
|
|
|
|
shader_type, name, shader_type, stored_type,
|
|
|
|
offset_name.empty() ? name : offset_name);
|
|
|
|
}
|
|
|
|
// else inputs are always available
|
|
|
|
}
|
|
|
|
|
2017-07-20 05:25:27 +00:00
|
|
|
void EnumerateVertexShaderUids(const std::function<void(const VertexShaderUid&)>& callback)
|
|
|
|
{
|
|
|
|
VertexShaderUid uid;
|
|
|
|
|
|
|
|
for (u32 texgens = 0; texgens <= 8; texgens++)
|
|
|
|
{
|
2019-05-30 05:05:06 +00:00
|
|
|
vertex_ubershader_uid_data* const vuid = uid.GetUidData();
|
2017-07-20 05:25:27 +00:00
|
|
|
vuid->num_texgens = texgens;
|
|
|
|
callback(uid);
|
|
|
|
}
|
|
|
|
}
|
2019-01-23 08:11:17 +00:00
|
|
|
} // namespace UberShader
|