dolphin/Source/Core/VideoCommon/VertexShaderGen.h

65 lines
1.7 KiB
C
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
2015-05-18 01:08:10 +02:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include "VideoCommon/LightingShaderGen.h"
#include "VideoCommon/ShaderGenCommon.h"
#include "VideoCommon/VideoCommon.h"
2013-01-11 11:59:42 +01:00
// TODO should be reordered
#define SHADER_POSITION_ATTRIB 0
2013-01-11 11:59:42 +01:00
#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
#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-06-23 19:28:36 +02:00
#pragma pack(1)
2013-03-31 20:55:57 +02:00
struct vertex_shader_uid_data
{
u32 NumValues() const { return sizeof(vertex_shader_uid_data); }
2013-06-23 19:28:36 +02:00
u32 components : 23;
u32 numTexGens : 4;
u32 numColorChans : 2;
2013-06-23 19:28:36 +02:00
u32 dualTexTrans_enabled : 1;
u32 pixel_lighting : 1;
u32 pad : 1;
2013-06-23 19:28:36 +02:00
2013-06-28 17:43:53 +02:00
u32 texMtxInfo_n_projection : 16; // Stored separately to guarantee that the texMtxInfo struct is 8 bits wide
struct {
u32 inputform : 2;
u32 texgentype : 3;
u32 sourcerow : 5;
2013-06-28 17:43:53 +02:00
u32 embosssourceshift : 3;
u32 embosslightshift : 3;
2013-06-28 17:43:53 +02:00
} texMtxInfo[8];
struct {
u32 index : 6;
2013-06-28 17:43:53 +02:00
u32 normalize : 1;
u32 pad : 1;
2013-06-28 17:43:53 +02:00
} postMtxInfo[8];
2013-03-31 23:29:33 +02:00
LightingUidData lighting;
};
2013-03-31 20:55:57 +02:00
#pragma pack()
typedef ShaderUid<vertex_shader_uid_data> VertexShaderUid;
void GetVertexShaderUid(VertexShaderUid& object, u32 components, API_TYPE api_type);
2015-10-29 14:43:05 +01:00
void GenerateVertexShaderCode(ShaderCode& object, u32 components, API_TYPE api_type);