2015-05-24 07:55:12 +03:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-18 02:08:10 +03:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 06:09:55 +03:00
|
|
|
// Refer to the license.txt file included.
|
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"
|
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;
|
2008-12-08 06:46:09 +02:00
|
|
|
|
2013-01-11 12:59:42 +02:00
|
|
|
// TODO should be reordered
|
2016-06-24 11:43:46 +03:00
|
|
|
#define SHADER_POSITION_ATTRIB 0
|
|
|
|
#define SHADER_POSMTX_ATTRIB 1
|
|
|
|
#define SHADER_NORM0_ATTRIB 2
|
|
|
|
#define SHADER_NORM1_ATTRIB 3
|
|
|
|
#define SHADER_NORM2_ATTRIB 4
|
|
|
|
#define SHADER_COLOR0_ATTRIB 5
|
|
|
|
#define SHADER_COLOR1_ATTRIB 6
|
2013-01-14 23:59:08 +02:00
|
|
|
|
2016-06-24 11:43:46 +03:00
|
|
|
#define SHADER_TEXTURE0_ATTRIB 8
|
|
|
|
#define SHADER_TEXTURE1_ATTRIB 9
|
|
|
|
#define SHADER_TEXTURE2_ATTRIB 10
|
|
|
|
#define SHADER_TEXTURE3_ATTRIB 11
|
|
|
|
#define SHADER_TEXTURE4_ATTRIB 12
|
|
|
|
#define SHADER_TEXTURE5_ATTRIB 13
|
|
|
|
#define SHADER_TEXTURE6_ATTRIB 14
|
|
|
|
#define SHADER_TEXTURE7_ATTRIB 15
|
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
|
|
|
{
|
2016-06-24 11:43:46 +03:00
|
|
|
u32 NumValues() const { return sizeof(vertex_shader_uid_data); }
|
|
|
|
u32 components : 23;
|
|
|
|
u32 numTexGens : 4;
|
|
|
|
u32 numColorChans : 2;
|
|
|
|
u32 dualTexTrans_enabled : 1;
|
|
|
|
u32 pixel_lighting : 1;
|
2016-01-16 11:56:49 +02:00
|
|
|
u32 msaa : 1;
|
2013-06-23 20:28:36 +03:00
|
|
|
|
2016-06-24 11:43:46 +03:00
|
|
|
u32 texMtxInfo_n_projection : 16; // Stored separately to guarantee that the texMtxInfo struct is
|
|
|
|
// 8 bits wide
|
2016-02-27 22:46:58 +02:00
|
|
|
u32 ssaa : 1;
|
2017-02-19 02:22:41 +02:00
|
|
|
u32 vertex_rounding : 1;
|
|
|
|
u32 pad : 14;
|
2016-01-16 11:56:49 +02:00
|
|
|
|
2016-06-24 11:43:46 +03:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
u32 inputform : 2;
|
|
|
|
u32 texgentype : 3;
|
|
|
|
u32 sourcerow : 5;
|
|
|
|
u32 embosssourceshift : 3;
|
|
|
|
u32 embosslightshift : 3;
|
|
|
|
} texMtxInfo[8];
|
2013-06-23 20:28:36 +03:00
|
|
|
|
2016-06-24 11:43:46 +03:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
u32 index : 6;
|
|
|
|
u32 normalize : 1;
|
|
|
|
u32 pad : 1;
|
|
|
|
} postMtxInfo[8];
|
2013-06-28 18:43:53 +03:00
|
|
|
|
2016-06-24 11:43:46 +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
|
|
|
|
2012-08-07 02:02:04 +03:00
|
|
|
typedef ShaderUid<vertex_shader_uid_data> VertexShaderUid;
|
2008-12-26 12:43:18 +02:00
|
|
|
|
2016-01-16 13:34:06 +02:00
|
|
|
VertexShaderUid GetVertexShaderUid();
|
2016-07-22 02:04:57 +03:00
|
|
|
ShaderCode GenerateVertexShaderCode(APIType api_type, const vertex_shader_uid_data* uid_data);
|