This repository has been archived on 2024-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
DX11Starter/Lights.hlsli
2022-03-19 16:55:22 -04:00

25 lines
371 B
HLSL

#ifndef __SHADER_LIGHTS__
#define __SHADER_LIGHTS__
#define LIGHT_TYPE_DIRECTIONAL 0
#define LIGHT_TYPE_POINT 1
#define LIGHT_TYPE_SPOT 2
// Struct representing light data
// - This should match Lights.h
struct Light
{
int Type;
float3 Direction;
float Range;
float3 Position;
float Intensity;
float3 Color;
float SpotFalloff;
float3 Padding;
};
#endif