mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-29 08:45:36 +00:00
14 lines
No EOL
182 B
GLSL
14 lines
No EOL
182 B
GLSL
#if !@ffpLighting
|
|
struct Sunlight
|
|
{
|
|
vec4 diffuse;
|
|
vec4 ambient;
|
|
vec4 specular;
|
|
vec4 direction;
|
|
};
|
|
|
|
layout(std140) uniform SunlightBuffer
|
|
{
|
|
Sunlight Sun;
|
|
};
|
|
#endif |