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

gpu_shader_3D_point_fixed_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: 776656fc2dfe6ef21c4952c6b76aadd6c9ffaeb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

uniform mat4 ModelViewProjectionMatrix;

in vec3 pos;
in vec4 color;
out vec4 finalColor;

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