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

drw_shader_3D_smooth_color_vert.glsl « shaders « modes « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05f9618a7f7ce6ebc0354d4af1cd45141e51cf29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Keep 'gpu_shader_3D_smooth_color_vert.glsl' compatible. */
uniform mat4 ModelViewProjectionMatrix;
uniform mat4 ModelMatrix;

in vec3 pos;
in vec4 color;

out vec4 finalColor;

void main()
{
	gl_Position = ModelViewProjectionMatrix * vec4(pos, 1.0);
	finalColor = color;
#ifdef USE_WORLD_CLIP_PLANES
       world_clip_planes_calc_clip_distance((ModelMatrix * vec4(pos, 1.0)).xyz);
#endif
}