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: a43c1aa40cf9271859cbeeb975a28abe3c908b21 (plain)
1
2
3
4
5
6

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