Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gpu_shader_simple_lighting_frag.glsl « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6bce517fee356b3806dea0814b7cd351821e143b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#ifndef USE_INSTANCE_COLOR
uniform vec4 color;
#endif
uniform vec3 light;

in vec3 normal;
#ifdef USE_INSTANCE_COLOR
flat in vec4 finalColor;
#  define color finalColor
#endif
out vec4 fragColor;

void main()
{
  fragColor = color;
  fragColor.xyz *= clamp(dot(normalize(normal), light), 0.0, 1.0);
}