2013-12-05 14:56:34 +01:00
|
|
|
#ifndef DEFINES
|
|
|
|
#define DEFINES
|
|
|
|
|
2013-11-28 14:34:52 +01:00
|
|
|
struct PointLight
|
|
|
|
{
|
2013-12-18 20:28:06 +01:00
|
|
|
float3 Pos;
|
|
|
|
float Radius;
|
|
|
|
float3 Color;
|
|
|
|
float Bright;
|
2013-12-05 14:56:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct DiffSpec
|
|
|
|
{
|
|
|
|
float3 Diffuse;
|
|
|
|
float3 Specular;
|
|
|
|
};
|
|
|
|
|
2013-12-18 20:28:06 +01:00
|
|
|
cbuffer LightConstants : register(b0)
|
2013-12-05 14:56:34 +01:00
|
|
|
{
|
|
|
|
float4x4 InvProj;
|
2013-12-18 20:28:06 +01:00
|
|
|
float2 Pixels;
|
|
|
|
int Lights;
|
|
|
|
float Pad;
|
2013-12-18 20:36:41 +01:00
|
|
|
float4x4 View;
|
2013-12-05 14:56:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Texture2D DiffuseGlow : register(t0);
|
|
|
|
Texture2D NormalSpec : register(t1);
|
|
|
|
Texture2D DepthTexture : register(t2);
|
2013-11-28 14:34:52 +01:00
|
|
|
|
2013-12-18 20:28:06 +01:00
|
|
|
|
|
|
|
StructuredBuffer<PointLight> Points : register(t3);
|
|
|
|
|
|
|
|
RWTexture2D<float4> Output : register(u0);
|
|
|
|
|
2013-12-05 14:56:34 +01:00
|
|
|
#endif
|