10 lines
139 B
HLSL
10 lines
139 B
HLSL
struct PointLight
|
|
{
|
|
float3 position;
|
|
float intensity;
|
|
float4 color;
|
|
float range;
|
|
float decay;
|
|
float2 __padding;
|
|
};
|