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

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

uniform mat4 ModelViewProjectionMatrix;

#if __VERSION__ == 120
  attribute vec2 pos;
  attribute float size;
  attribute vec4 color;
  varying vec4 finalColor;
#else
  in vec2 pos;
  in float size;
  in vec4 color;
  out vec4 finalColor;
#endif

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