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

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

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