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

gpu_shader_3D_flat_color_vert.glsl « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b6a890ccc82fb2f753c5d9895820481d7032728 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

uniform mat4 ModelViewProjectionMatrix;
#ifdef USE_WORLD_CLIP_PLANES
uniform mat4 ModelMatrix;
#endif

in vec3 pos;
#if defined(USE_COLOR_U32)
in uint color;
#else
in vec4 color;
#endif

flat out vec4 finalColor;

void main()
{
  vec4 pos_4d = vec4(pos, 1.0);
  gl_Position = ModelViewProjectionMatrix * pos_4d;

#if defined(USE_COLOR_U32)
  finalColor = vec4(((color)&uint(0xFF)) * (1.0f / 255.0f),
                    ((color >> 8) & uint(0xFF)) * (1.0f / 255.0f),
                    ((color >> 16) & uint(0xFF)) * (1.0f / 255.0f),
                    ((color >> 24)) * (1.0f / 255.0f));
#else
  finalColor = color;
#endif

#ifdef USE_WORLD_CLIP_PLANES
  world_clip_planes_calc_clip_distance((ModelMatrix * pos_4d).xyz);
#endif
}