blob: 7383892c3950ea9d078397b744596c37fd70d27f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef DATA
#define DATA
struct PoiLighting
{
float3 direction;
float3 position;
float3 color;
float attenuation;
float3 directLighting;
float3 indirectLighting;
float lightMap;
float3 rampedLightMap;
float3 finalLighting;
float nDotL;
};
#endif
|