1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-02 12:15:33 +00:00
openmw-tes3mp/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