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

gpencil_edit_point_vert.glsl « shaders « gpencil « engines « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a1cfb2ae4ae4a50846ac33a92dcc55cf3a0c8c80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

in vec3 pos;
in vec4 color;
in float size;

out vec4 finalColor;
out float finalThickness;

void main()
{
  gl_Position = point_object_to_ndc(pos);
  finalColor = color;
  finalThickness = size;
}