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

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

#if __VERSION__ == 120
  attribute vec3 pos;
  attribute vec4 color;

  varying vec4 finalColor;
#else
  in vec3 pos;
  in vec4 color;

  out vec4 finalColor;
#endif

void main()
{
	gl_Position = gl_ModelViewProjectionMatrix * vec4(pos, 1.0);
	finalColor = color;
}