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: 8c241cff5d489665bfafe8304e3d215512ab5a24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

uniform mat4 ModelViewProjectionMatrix;

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

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

  flat out vec4 finalColor;
#endif

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