48 lines
738 B
HLSL
48 lines
738 B
HLSL
struct AnimVertexIn
|
|
{
|
|
float3 pos : POSITION;
|
|
float2 UV : TEXCOORD;
|
|
float3 normal : NORMAL;
|
|
float4 boneIndex : BONEINDEX;
|
|
float4 boneWeight : BONEWEIGHT;
|
|
};
|
|
|
|
struct VertexOut
|
|
{
|
|
float4 pos : SV_POSITION;
|
|
float4 ViewPos : POSITION;
|
|
float2 UV : TEXCOORD;
|
|
float3 normal : NORMAL;
|
|
};
|
|
|
|
struct PixelOut
|
|
{
|
|
float4 DiffuseGlow : SV_TARGET0;
|
|
float4 NormalSpec : SV_TARGET1;
|
|
};
|
|
|
|
Texture2D Diffuse : register(t0);
|
|
Texture2D Normal : register(t1);
|
|
|
|
SamplerState S1 : register(s0);
|
|
|
|
cbuffer Animation : register(b0)
|
|
{
|
|
float4x4 AnimatedData[100];
|
|
}
|
|
|
|
cbuffer PerModel : register(b1)
|
|
{
|
|
matrix WV;
|
|
matrix WVP;
|
|
int Animated;
|
|
float3 Pad;
|
|
}
|
|
|
|
cbuffer Tint : register(b0)
|
|
{
|
|
float3 Color;
|
|
float PAD;
|
|
float3 GlowColor;
|
|
float PAD2;
|
|
} |