Danbias/Code/OysterGraphics/Shader/HLSL/Deffered Shaders/GBufferHeader.hlsli

43 lines
752 B
HLSL
Raw Normal View History

2013-11-26 13:44:58 +01:00
struct VertexIn
{
float3 pos : POSITION;
float2 UV : TEXCOORD;
float3 normal : NORMAL;
//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;
float4 ViewPos : POSITION;
float2 UV : TEXCOORD;
float3 normal : NORMAL;
//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);
Texture2D Normal : register(t1);
SamplerState S1 : register(s0);
2013-11-26 13:44:58 +01:00
cbuffer PerFrame : register(b0)
{
matrix View;
float4x4 Projection;
matrix VP;
}
cbuffer PerModel : register(b1)
{
matrix World;
}