2013-11-26 13:44:58 +01:00
|
|
|
struct VertexIn
|
|
|
|
{
|
|
|
|
float3 pos : POSITION;
|
|
|
|
float2 UV : TEXCOORD;
|
|
|
|
float3 normal : NORMAL;
|
2014-01-17 08:51:12 +01:00
|
|
|
float3 tangent : TANGENT;
|
|
|
|
float3 biTangent : BITANGENT;
|
|
|
|
float4 boneIndex : BONEINDEX;
|
|
|
|
float4 boneWeight : BONEWEIGHT;
|
2013-11-26 13:44:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct VertexOut
|
|
|
|
{
|
|
|
|
float4 pos : SV_POSITION;
|
2014-01-17 08:51:12 +01:00
|
|
|
//float4 ViewPos : POSITION;
|
2013-11-26 13:44:58 +01:00
|
|
|
float2 UV : TEXCOORD;
|
|
|
|
float3 normal : NORMAL;
|
2013-12-18 20:28:06 +01:00
|
|
|
//float3 tangent : TANGENT;
|
|
|
|
//float3 biTangent : BITANGENT;
|
2013-11-26 13:44:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct PixelOut
|
|
|
|
{
|
|
|
|
float4 DiffuseGlow : SV_TARGET0;
|
|
|
|
float4 NormalSpec : SV_TARGET1;
|
|
|
|
};
|
|
|
|
|
|
|
|
Texture2D Diffuse : register(t0);
|
2013-12-18 20:28:06 +01:00
|
|
|
Texture2D Normal : register(t1);
|
|
|
|
|
|
|
|
SamplerState S1 : register(s0);
|
2013-11-26 13:44:58 +01:00
|
|
|
|
2014-01-27 14:24:13 +01:00
|
|
|
cbuffer Animation : register(b0)
|
2013-11-26 13:44:58 +01:00
|
|
|
{
|
2014-01-27 14:24:13 +01:00
|
|
|
int Animated;
|
|
|
|
float3 Pad;
|
|
|
|
float4x4 BoneAnimation[10];
|
2013-11-26 13:44:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cbuffer PerModel : register(b1)
|
|
|
|
{
|
2014-01-08 07:01:59 +01:00
|
|
|
matrix WV;
|
|
|
|
matrix WVP;
|
2013-11-26 13:44:58 +01:00
|
|
|
}
|