2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-18 01:08:10 +02:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 05:09:55 +02:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2014-02-10 19:54:46 +01:00
|
|
|
#pragma once
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2016-01-17 22:54:31 +01:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 11:18:15 +01:00
|
|
|
#include "VideoCommon/LightingShaderGen.h"
|
|
|
|
#include "VideoCommon/ShaderGenCommon.h"
|
2016-07-22 01:04:57 +02:00
|
|
|
|
|
|
|
enum class APIType;
|
2021-02-11 01:01:42 +01:00
|
|
|
enum class TexInputForm : u32;
|
|
|
|
enum class TexGenType : u32;
|
|
|
|
enum class SourceRow : u32;
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2013-01-11 11:59:42 +01:00
|
|
|
// TODO should be reordered
|
2018-03-18 20:40:37 +01:00
|
|
|
enum : int
|
|
|
|
{
|
|
|
|
SHADER_POSITION_ATTRIB = 0,
|
|
|
|
SHADER_POSMTX_ATTRIB = 1,
|
|
|
|
SHADER_NORM0_ATTRIB = 2,
|
|
|
|
SHADER_NORM1_ATTRIB = 3,
|
|
|
|
SHADER_NORM2_ATTRIB = 4,
|
|
|
|
SHADER_COLOR0_ATTRIB = 5,
|
|
|
|
SHADER_COLOR1_ATTRIB = 6,
|
2013-01-14 22:59:08 +01:00
|
|
|
|
2018-03-18 20:40:37 +01:00
|
|
|
SHADER_TEXTURE0_ATTRIB = 8,
|
|
|
|
SHADER_TEXTURE1_ATTRIB = 9,
|
|
|
|
SHADER_TEXTURE2_ATTRIB = 10,
|
|
|
|
SHADER_TEXTURE3_ATTRIB = 11,
|
|
|
|
SHADER_TEXTURE4_ATTRIB = 12,
|
|
|
|
SHADER_TEXTURE5_ATTRIB = 13,
|
|
|
|
SHADER_TEXTURE6_ATTRIB = 14,
|
|
|
|
SHADER_TEXTURE7_ATTRIB = 15
|
|
|
|
};
|
2013-01-14 22:59:08 +01:00
|
|
|
|
2013-06-23 19:28:36 +02:00
|
|
|
#pragma pack(1)
|
2013-03-31 20:55:57 +02:00
|
|
|
|
2012-08-07 01:02:04 +02:00
|
|
|
struct vertex_shader_uid_data
|
2008-12-26 11:43:18 +01:00
|
|
|
{
|
2013-07-02 14:32:52 +02:00
|
|
|
u32 NumValues() const { return sizeof(vertex_shader_uid_data); }
|
2013-08-12 12:04:56 +02:00
|
|
|
u32 components : 23;
|
2012-08-06 22:41:30 +02:00
|
|
|
u32 numTexGens : 4;
|
2013-08-12 12:04:56 +02:00
|
|
|
u32 numColorChans : 2;
|
2013-06-23 19:28:36 +02:00
|
|
|
u32 dualTexTrans_enabled : 1;
|
|
|
|
|
|
|
|
u32 texMtxInfo_n_projection : 16; // Stored separately to guarantee that the texMtxInfo struct is
|
2013-06-28 17:43:53 +02:00
|
|
|
// 8 bits wide
|
2017-06-24 10:18:53 +02:00
|
|
|
u32 pad : 18;
|
2016-01-16 10:56:49 +01:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
struct
|
|
|
|
{
|
2021-02-11 01:01:42 +01:00
|
|
|
TexInputForm inputform : 2;
|
|
|
|
TexGenType texgentype : 3;
|
|
|
|
SourceRow sourcerow : 5;
|
2013-06-28 17:43:53 +02:00
|
|
|
u32 embosssourceshift : 3;
|
2013-06-30 14:27:04 +02:00
|
|
|
u32 embosslightshift : 3;
|
2014-12-15 21:09:25 +01:00
|
|
|
} texMtxInfo[8];
|
2013-06-23 19:28:36 +02:00
|
|
|
|
2013-06-28 17:43:53 +02:00
|
|
|
struct
|
2016-06-24 10:43:46 +02:00
|
|
|
{
|
2013-06-28 17:43:53 +02:00
|
|
|
u32 index : 6;
|
|
|
|
u32 normalize : 1;
|
|
|
|
u32 pad : 1;
|
|
|
|
} postMtxInfo[8];
|
|
|
|
|
2013-03-31 23:29:33 +02:00
|
|
|
LightingUidData lighting;
|
2012-08-06 22:41:30 +02:00
|
|
|
};
|
2013-03-31 20:55:57 +02:00
|
|
|
#pragma pack()
|
2008-12-26 11:43:18 +01:00
|
|
|
|
2019-05-30 07:05:06 +02:00
|
|
|
using VertexShaderUid = ShaderUid<vertex_shader_uid_data>;
|
2008-12-26 11:43:18 +01:00
|
|
|
|
2016-01-16 12:34:06 +01:00
|
|
|
VertexShaderUid GetVertexShaderUid();
|
2017-07-20 09:10:02 +02:00
|
|
|
ShaderCode GenerateVertexShaderCode(APIType api_type, const ShaderHostConfig& host_config,
|
|
|
|
const vertex_shader_uid_data* uid_data);
|