1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-29 08:45:36 +00:00
openmw/files/shaders/sun.glsl
glassmancody.info dda735c54a initial commit
2021-04-13 11:06:16 -07:00

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